Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

Блог пользователя sachyadon

Автор sachyadon, история, 7 лет назад, По-английски

include <bits/stdc++.h>

using namespace std;

int main() { bitset<10> s(string("0010011010")); cout << s[4] << "\n"; // 0 cout << s[5] << "\n"; // 1 return 0; }

The above code gives the output 1 and 0 instead of expected 0 and 1 I am using c++11. Not sure why it fails.

Please help

  • Проголосовать: нравится
  • -18
  • Проголосовать: не нравится