fork download
  1. class M{
  2. static String c(){
  3. String r = "",
  4. b = "___|",
  5. x = "_|",
  6. y = b;
  7. int i = 0;
  8. for(; i++ < 99; x+=b, y+=b);
  9. for(i = 0; i++ < 10; r += (i%2<1 ? y : x).substring(0, 70) + "\n");
  10. return r;
  11. }
  12.  
  13. public static void main(String[] a){
  14. System.out.println(c());
  15. }
  16. }
Success #stdin #stdout 0.04s 711168KB
stdin
Standard input is empty
stdout
_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__
_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__
_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__
_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__
_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|
___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__