Hi Gays This is Simple Java System.out.print Art.
Like This
\ SORRY /
\ /
\ This page does /
] not exist yet. [ ,'|
] [ / |
]___ ___[ ,' |
] ]\ /[ [ |: |
] ] \ / [ [ |: |
] ] ] [ [ [ |: |
] ] ]__ __[ [ [ |: |
] ] ] ]\ _ /[ [ [ [ |: |
] ] ] ] (#) [ [ [ [ :===='
] ] ]_]. .[_[ [ [
] ] ] . [ [ [
] ] / \ [ [
]__]/ \[__[
] [
] [
] [
/ \
/ \
/ \
This Is a Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Art1{ | |
public static void main(String args[]){ | |
System.out.println(" "); | |
System.out.println(" \\ SORRY /"); | |
System.out.println(" \\ /"); | |
System.out.println(" \\ This page does /"); | |
System.out.println(" ] not exist yet. [ ,'|"); | |
System.out.println(" ] [ / |"); | |
System.out.println(" ]___ ___[ ,' |"); | |
System.out.println(" ] ]\\ /[ [ |: |"); | |
System.out.println(" ] ] \\ / [ [ |: |"); | |
System.out.println(" ] ] ] [ [ [ |: |"); | |
System.out.println(" ] ] ]__ __[ [ [ |: |"); | |
System.out.println(" ] ] ] ]\\_ /[ [ [ [ |: |"); | |
System.out.println(" ] ] ] ] (#) [ [ [ [ :===='"); | |
System.out.println(" ] ] ]_]. .[_[ [ ["); | |
System.out.println(" ] ] ] . [ [ ["); | |
System.out.println(" ] ] / \\ [ ["); | |
System.out.println(" ]__]/ \\[__["); | |
System.out.println(" ] ["); | |
System.out.println(" ] ["); | |
System.out.println(" ] ["); | |
System.out.println(" / \\"); | |
System.out.println(" / \\"); | |
System.out.println(" / \\"); | |
System.out.println("Hello World This is ezcod.blogspot.com "); | |
} | |
} |
Now We talks For loop Simple Art.
Art 2
00000 00000 00000 00000 00000
code :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Art2{ | |
public static void main(String args[]){ | |
/* 00000 00000 00000 00000 00000 */ | |
int a = 0; | |
while(a<5){ | |
int c = 0; | |
while( c <5 ){ | |
System.out.print("0"); | |
c++; | |
} | |
System.out.print(" "); | |
a++; | |
} | |
} | |
} | |
Art 3
00000
00000
00000
00000
00000
Code Here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Art3{ | |
public static void main(String args[]){ | |
/* 00000 | |
00000 | |
00000 | |
00000 | |
00000 */ | |
int y = 0; | |
while(y<5){ | |
int x = 0; | |
while( x <5 ){ | |
System.out.print("0"); | |
x++; | |
} | |
System.out.println(" "); // print replace to println | |
y++; | |
} | |
} | |
} |
Art 4
0
00
000
0000
Code here :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Art4{ | |
public static void main(String args[]){ | |
/* | |
0 | |
00 | |
000 | |
0000 | |
*/ | |
int y = 0; | |
while(y<10){ // main | |
int x =0; | |
// start | |
while(x <= y){ | |
System.out.print("*"); | |
x++; | |
} //end | |
y++; | |
System.out.println(); | |
} // end main | |
} | |
} |