0
What's wrong with it . every time i try to run this simple program finally it show me 0. Every time!
#include <iostream> using namespace std; int main() { int b,c; cin >> b,c; int a=b/c; cout <<a; return 0; }
2 Answers
+ 1
write cin>> b>> c;
0
Thank you very much!!!