fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. int i,j,k;
  5. for (int i=1; i<=5; i++){
  6. for (int j=1; i<=3; i++){
  7. for (int k=1; k<=4; i++)
  8. cout<<"*";
  9. cout<<endl;
  10. }
  11. cout<<endl;
  12. }
  13. return 0;
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.asm:1: error: label or instruction expected at start of line
prog.asm:2: error: parser: instruction expected
prog.asm:3: error: comma, colon or end of line expected
prog.asm:5: error: parser: instruction expected
prog.asm:6: error: symbol `for' redefined
prog.asm:6: error: parser: instruction expected
prog.asm:7: error: symbol `for' redefined
prog.asm:7: error: parser: instruction expected
prog.asm:8: error: parser: instruction expected
prog.asm:9: error: symbol `cout' redefined
prog.asm:9: error: parser: instruction expected
prog.asm:10: error: label or instruction expected at start of line
prog.asm:11: error: symbol `cout' redefined
prog.asm:11: error: parser: instruction expected
prog.asm:12: error: label or instruction expected at start of line
prog.asm:13: error: parser: instruction expected
stdout
Standard output is empty