Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class testing
- {
- public static void main(String args[]){
- int c;
- int size=8;
- for (int a=0;a<size;a++){
- for (int b=0;b<size;b++){
- if (a==b){
- c = a+b;
- }
- else{
- c = 0;
- }
- System.out.print(c);
- System.out.print(" ");
- }
- System.out.println();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement