#include <iostream> using namespace std; int main() { int cut=0; while(cut<10){ cout<<"HELLO,C++"<<cut<<endl; cut++; //cut=0-9 } return 0; }
Standard input is empty
HELLO,C++1 HELLO,C++2 HELLO,C++3 HELLO,C++4 HELLO,C++5 HELLO,C++6 HELLO,C++7 HELLO,C++8 HELLO,C++9 HELLO,C++10