Abdullah047

X

Nov 28th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package javaapplication4;
  2. import java.util.Scanner;
  3. public class JavaApplication4 {
  4. public static void main(String[] args)
  5. {
  6. for(int i=1;i<=5;i++){
  7. for(int j=1;j<=5;j++){
  8. if(i==j || j==6-i){
  9. System.out.print("*");
  10. }
  11. else{
  12. System.out.print(" ");
  13. }
  14. }
  15. System.out.println();
  16. }
  17.  
  18. }
  19. }
Add Comment
Please, Sign In to add comment