fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int cut=0;
  7. while(cut<10){
  8. cout<<"HELLO,C++"<<cut<<endl;
  9. cut++;
  10. //cut=0-9
  11.  
  12. }
  13.  
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
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