0
Помогите найти ошибку
#include <iostream> using namespace std; int main() { int a; cin >> a; if(a>=10 & a<=99) if(a%8==0) cout<<a; else cout << "NO"; return 0; }
1 Resposta
+ 1
Use && instead of &.
& is bitwise operator. && is relational operator.
Используйте && вместо &.
& - побитовый оператор. && - оператор отношения.