+ 2
Hi guys can someone tell me what's the use of looping? Sorry I'm just new here, just a 15 year old kid wanna learn codes
Codes
2 Antworten
+ 4
It's a method to execute code several times instead of writing it again over and over.
Try this in C++:
for(int i=1; i<=12; ++i)
cout << "Round " << i << endl;
+ 2
Repetition of steps.