Java Code Art And For loop Art

 Hi Gays This is Simple Java System.out.print  Art. 

Like This 


        \          SORRY            /
         \                         /
          \    This page does     /
           ]   not exist yet.    [    ,'|
           ]                     [   /  |
           ]___               ___[ ,'   |
           ]  ]\             /[  [ |:   |
           ]  ] \           / [  [ |:   |
           ]  ]  ]         [  [  [ |:   |
           ]  ]  ]__     __[  [  [ |:   |
           ]  ]  ] ]\ _ /[ [  [  [ |:   |
           ]  ]  ] ] (#) [ [  [  [ :===='
           ]  ]  ]_].   .[_[  [  [
           ]  ]  ]       . [  [  [
           ]  ] /           \ [  [
           ]__]/             \[__[
           ]                     [
           ]                     [
           ]                     [
          /                       \
         /                         \
        /                           \

This Is a Code 

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 ");
}
}
view raw Art1.java hosted with ❤ by GitHub




Now We talks For loop Simple Art. 

Art 2

                        00000 00000 00000 00000 00000 

code : 


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++;
}
}
}
view raw art2.java hosted with ❤ by GitHub


Art 3

    00000

    00000

    00000

    00000

    00000


Code Here


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++;
}
}
}
view raw Art3.java hosted with ❤ by GitHub

Art 4

  0

  00

  000

  0000 


Code here :


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
}
}
view raw Art4.java hosted with ❤ by GitHub





Post a Comment

Previous Post Next Post

Featured Post