/import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int x = t.nextInt();
// for (int i=1;i<=x;i++) {
// for(int j=1;j<=x;j++) {
// if(i==1||i==x) {
// System.out.print("*");
// }
// else if(j==1||j==x) {
// System.out.print("*");
// }
// else {
// System.out.print(" ");
// }
// }
// System.out.println();
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int a = t.nextInt();
// for (int i=1;i<=a;i++) {
// for (int j=1;j<=a;j++) {
// if(i==1||i==a) {
// System.out.print("*");
// }
// else if(j==1||j==a) {
// System.out.print("*");
// }
// else if (j+i==a+1) {
// System.out.print("*");
// }
// else if(i-j==0) {
// System.out.print("*");
// }
// else {
// System.out.print(" ");
// }
// }
// System.out.println();
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int l = t.nextInt();
// for(int i=1;i<=l;i++) {
// for(int j=1;j<=l;j++) {
// if(i==1||i==l) {
// System.out.print("*");
// }
// else if(j==1||j==l) {
// System.out.print("*");
// }
// else if(j+i==l+1) {
// System.out.print("*");
// }
// else if(i-j==0) {
// System.out.print("*");
// }
// else if(j==l/2+1) {
// System.out.print("*");
// }
// else if((l+1)/2==i) {
// System.out.print("*");
// }
// else {
// System.out.print(" ");
// }
// }
// System.out.println();
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int a = t.nextInt();
//
// for(int i=0; i<=a/2; i++) {
// for(int j=i; j<a/2; j++) {
// System.out.print(" ");
// }
// for(int j=0; j<=i*2; j++) {
// System.out.print("*");
// }
// System.out.println();
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int a = t.nextInt();
// int b = t.nextInt();
// for(int x=1;x<=b;x++) {
// for(int i=1;i<=a;i++) {
// for(int j=2;j<=i;j++) {
// System.out.print(" ");
// }
// System.out.println("*");
// }
// for(int i=a;i-1>=1;i--) {
// for(int j=2;j<=i-1;j++) {
// System.out.print(" ");
// }
// System.out.println("*");
// }
// }
// }
//}
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int arr[] = new int[100];
// // arr[0], arr[1], arr[2], .., arr[98], arr[99]
//
// for(int i=0; i<arr.length; i++) {
// arr[i] = t.nextInt();
// }
//
// for(int i=0; i<arr.length; i++) {
// System.out.println(arr[i]);
// }
//
//
//
//
//
//
// }
//}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
int a = t.nextInt();
for(int i=1;i<=a;i++) {
for(int j=1;j<=a;j++) {
System.out.print(".");
}
System.out.println();
for(int j=1;j<=i;j++) {
System.out.print("*");
}
System.out.println();
}
}
}
top of page
기능을 테스트하려면 라이브 사이트로 이동하세요.
2024.07.19
2024.07.19
댓글 0개
좋아요
댓글(0)
bottom of page