+ 1
Make a program using while loop that Repeats a block of code as long as the user indicates they want it to in c++.
3 Réponses
+ 7
Start learning c++ and you will be able to do it soon.
+ 1
Char letter;
While(letter=='y'){
//Code here
cin>>letter;
};
0
I have learned some c++ language but can't solve this question