0
Why itâs wrong?
#include<iostream> using namespace std; int main() { int a; int b; count<<"input a number\n"; cin>>a; count<<"another one\n"; cin>>b; if(a>b){ count<<"a is bigger than b\n"; } return 0; }
2 Answers
+ 12
Replace "count" with "cout"
0
thanksïŒ