fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. for(int n=0;n<4;++n,cout<<endl) for(int y=0;y<4;++y,cout<<endl) for(int x=0;x<4;++x) cout<<'*';
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
****
****
****
****

****
****
****
****

****
****
****
****

****
****
****
****