fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. for (int i = 0; i < 5; i++) // этот цикл отвечает за кол-во строк
  7. {
  8. for (int j = 0; j < 15; j++) // этот - за кол-во символов в каждой строке
  9. {
  10. cout << '525';
  11. }
  12. cout << endl; // переход на строку ниже
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
348626134862613486261348626134862613486261348626134862613486261348626134862613486261348626134862613486261
348626134862613486261348626134862613486261348626134862613486261348626134862613486261348626134862613486261
348626134862613486261348626134862613486261348626134862613486261348626134862613486261348626134862613486261
348626134862613486261348626134862613486261348626134862613486261348626134862613486261348626134862613486261
348626134862613486261348626134862613486261348626134862613486261348626134862613486261348626134862613486261