0
Why I cant give value to cin >> b
int a, b; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b; cout << a << " - "<< b; when you give number you give it for a but not for b. b cout 8 why
7 Réponses
+ 9
What compiler are you using?
+ 7
I don't see any error in the code. Can you elaborate more what's the issue you are facing?
0
try to type in user input:
9
8
^ ------------------------------------------------------ |
else try this, rewrite in the user input | ---------------------------------------------------------|
#include<iostream>
using namespace std;
int main() {
int a, b;
cout << "Enter a number \n";
cin >> a >> b;
cout << "Enter another number \n";
cout << a << " - "<< b;
}
0
What you input to this program? (specify exact form)
0
input to program so 9
7
0
you need to type with newline 9
7
0
when you say program to run this code he offers you to give value a but only for a not for b. you give a any value but for b it give 8. Why