- 1
How to declare variables
Which co de can I type in to declare variable "b" if "a=15" , when the output << a_b<<endl;
2 Respuestas
+ 1
you use int
there's C++ course in SoloLearn and it's fun to learn
0
int a = 15;
int b = (something);
Cout << a - b;