1. 아래를 찍으시오.
*****
*****
*****
*****
*****
public class PrintStars {
public static void main(String[] args) {
for(int i = 0;i < 5; i++){
for(int j = 0 ; j < 5 ; j++)
System.out.print("*");
System.out.println();
}
}
}
*****
*****
*****
*****
*****
2. 아래를 찍으시오.
*
**
***
****
*****
public class PrintStars {
public static void main(String[] args) {
for(int i = 0;i < 5; i++){
for(int j = 0 ; j <= i ; j++)
System.out.print("*");
System.out.println();
}
}
}
*
**
***
****
*****
3. 아래를 찍으시오.
*****
****
***
**
*
public class PrintStars {
public static void main(String[] args) {
for(int i = 0;i < 5; i++){
for(int j = i ; j < 5 ; j++)
System.out.print("*");
System.out.println();
}
}
}
*****
****
***
**
*
4. 아래를 찍으시오.
*
**
***
****
*****
public class PrintStars {
public static void main(String[] args) {
for(int i = 0;i < 5; i++){
for(int j = i ; j< 4 ; j++) System.out.print(" ");
for(int j = 0; j<=i ; j++) System.out.print("*");
System.out.println();
}
}
}
*
**
***
****
*****
5. 아래를 찍으시오.
*****
****
***
**
*
public class PrintStars {
public static void main(String[] args) {
for(int i = 0;i < 5; i++){
for(int j = 0; j<i ; j++) System.out.print(" ");
for(int j = i ; j < 5 ; j++) System.out.print("*");
System.out.println();
}
}
}
*****
****
***
**
*