fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. void main()
  6. {
  7. int a,b;
  8. cout<<"Welcome In The Rock Game"<<endl;
  9. cout<<"Please Enter How Many Rock Do you Want In Column A "<<endl;
  10. cin>>a;
  11. cout<<"Please Enter How Many Rock Do you Want In Column B"<<endl;
  12. cin>>b;
  13. if(a==0 && b==0)
  14. cout<<"Invalid Choice";
  15. for(int i=0 ; i<=a ; i++)
  16. cout<<"(|)"<<endl;
  17. for (int i=0 ; i <=b ; i++)
  18. cout<<"(|)"<<endl;
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:5:11: error: '::main' must return 'int'
 void main()
           ^
stdout
Standard output is empty