๋ฐ์ํ
์ ์ฌ๋ฌธ์
- ์์ฐจ๋๋ก ๋ณ ๋ฝ๊ธฐ
- ์ํ๋ ๋ณ ๋ชจ์ ์ถ๋ ฅํ๊ธฐ
- ํ์ฉ ๋ฒ์๊ฐ ๋ค์ํ๋ค
๋ชฉํ
์ฝ๋
package JavaBook;
import java.util.Scanner;
public class no3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int arr[] = new int[5];
for(int i = 0;i < 4;i++) {
System.out.print(i+1+"๋ฒ์งธ ๋ณ์ ์ : ");
arr[i] = sc.nextInt();
}
for(int i = 0;i< 4;i++) {
System.out.print(arr[i]+" : ");
for(int j = 0;j < arr[i];j++) {
System.out.print("*");
}
System.out.println();
}
}
}
๊ฒฐ๊ณผ
1๋ฒ์งธ ๋ณ์ ์ : 7
2๋ฒ์งธ ๋ณ์ ์ : 5
3๋ฒ์งธ ๋ณ์ ์ : 3
4๋ฒ์งธ ๋ณ์ ์ : 4
7 : *******
5 : *****
3 : ***
4 : ****
๋ฐ์ํ