Advertisement
tjb1

Untitled

Nov 24th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class testing
  2. {
  3. public static void main(String args[]){
  4.  
  5. int c;
  6. int size=8;
  7. for (int a=0;a<size;a++){
  8. for (int b=0;b<size;b++){
  9. if (a==b){
  10. c = a+b;
  11. }
  12. else{
  13. c = 0;
  14. }
  15. System.out.print(c);
  16. System.out.print(" ");
  17. }
  18. System.out.println();
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement