Why I did not see the msg "Enter a number" in my screen??? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

Why I did not see the msg "Enter a number" in my screen???

I only see a new small windows "Seems that your program requires input"... Where is the msg "Enter a number"???? What is wrong???

8th Jan 2018, 2:22 AM
hector
hector - avatar
3 Réponses
+ 3
That small window is shown when Code Playground detects that your code requires input, depending on the number of input required, you will have to enter your inputs on that dialog, each input is separated by a new line (Enter), in your case there's two input (as numbers) required, so you enter two numbers, as follows: 4 5 Then the code will be processed, in this case a process of adding a and b, and on success, the output will be shown, whereas on error the error message will be shown instead. Hth, cmiiw
8th Jan 2018, 3:11 AM
Ipang
+ 1
Is Code Playground. I know Python doesn't display a message here. Maybe c++ neither. But the message is displayed in html :(
8th Jan 2018, 2:31 AM
Sebastián Zapata
Sebastián Zapata - avatar
+ 1
oh! it is c++ and this is the code (from the course): #include <iostream> using namespace std; int main() { int a, b; int sum; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b; sum = a + b; cout << "Sum is: " << sum << endl; return 0; } Thank you!
8th Jan 2018, 2:33 AM
hector
hector - avatar