Skip to content

Instantly share code, notes, and snippets.

@coolsasindu
Created March 25, 2021 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolsasindu/a60223e2df93dd3b315afe3e7d3532cf to your computer and use it in GitHub Desktop.
Save coolsasindu/a60223e2df93dd3b315afe3e7d3532cf to your computer and use it in GitHub Desktop.
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++;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment