fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. String long_string = "dsrgsghhhhhhhtttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttthhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhsfgshgfhghfghfghhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh";
  8. const int line_length = 30;
  9. int count = 0;
  10. foreach(char c in long_string)
  11. {
  12. System.Console.Write(c);
  13. count++;
  14. if(count==line_length)
  15. {
  16. System.Console.Write('\n');
  17. count = 0;
  18. }
  19. }
  20. }
  21. }
Success #stdin #stdout 0.02s 33880KB
stdin
Standard input is empty
stdout
dsrgsghhhhhhhttttttttttttttttt
tttttttttttttttttttttttttttttt
ttttttttttttttttthhhhhhhhhhhhh
hhhhhhhhhhhhhhhhhhsfgshgfhghfg
hfghhhhhhhhhhhhhhhhhhhhhhhhhhh
hhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
hhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
hhhhhhhhhhhh