๐ [ ์ค์ฒฉ for๋ฌธ ] : for๋ฌธ ๋ด์ ๋ ๋ค๋ฅธ for๋ฌธ์ ํฌํจ์ํฌ ์ ์๋ค.
๐ ๊ตฌ๊ตฌ๋จ ๊ณต์
public static void main(String[] args) {
for(int i=2; i<=9; i++) {
for(int j=1; j<=9; j++) {
System.out.println(i + "*" + j + "=" +(i*j));
}
System.out.println();
}
}
}
๐ [์์ : ๋จ์ ์
๋ ฅ๋ฐ์ ๊ตฌ๊ตฌ๋จ ๋ง๋ค๊ธฐ]
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("๋จ์ ์
๋ ฅํ์ธ์");
int dan=scan.nextInt();
for (int i=1; i<10; i++) {
System.out.println(dan + " * " + i + " = " + (dan*i));
}
}
}
๐ [์์ : ๊ตฌ๊ตฌ๋จ ๊ฐ๋ก๋ก ์ถ๋ ฅ]
for(int i=2; i<10; i++) {
for(int j=1; j<10; j++) {
System.out.print(i +"*"+ j +"="+ i*j + "\t");
}
System.out.println();
}
}
}
๐ [์์ : ์ํ๋ฒณ ์ถ๋ ฅํ๊ธฐ ]
System.out.println("์ํ๋ฒณ์ ์ถ๋ ฅ");
for(char i='A'; i<='Z'; i++) {
System.out.println("์ํ๋ฒณ :" + i);
}
}
๐ [์์ : 1๋ถํฐ 100๊น์ง ์ถ๋ ฅ, ๋จ ํ์ค์ 10๊ฐ์ฉ ์ถ๋ ฅ ]
System.out.println("1๋ถํฐ 100๊น์ง ์๋ฅผ ๋ชจ๋ ์ถ๋ ฅํ์์ค");
for(int i=1; i<=100; i++) {
System.out.println(i + " ");
if(i%10==0) {
System.out.println();
}
}
}
}
๐ [์์ : ๋ณ์ฐ๊ธฐ]
public static void main(String[] args) {
for(int i=1; i<=5; i++) {
for(int j=1; j<=i; j++) {
System.out.print("*");
}
System.out.println();
}
}
๐ [์์ : ๊ฑฐ๊พธ๋ก ๋ณ์ฐ๊ธฐ]
public static void main(String[] args) {
for(int i=5; i>=1; i--) {
for(int j=1; j<=i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
๐ [์์ : ์ํ๋ฒณ ์ผ๊ฐํ ์ฐ๊ธฐ]
//A
//AB
//ABC
//ABCD
//ABCDE
for(char i='A'; i<='E'; i++) {
for(char j='A'; j<=i; j++) {
System.out.print(j);
}
System.out.println();
}
}
}
[๋์] : ์ ์๋ ๋ฒ์๋ด์์ ๋ฌด์์๋ก ์ถ์ถ๋ ์, ๋ง ๊ทธ๋๋ ๋ฌด์์๋ก ๋์จ ์ซ์
- math ํด๋์ค์ random()๋งค์๋ ์ด์ฉ
- random ํด๋์ค ์ด์ฉ
[while๋ฌธ] : ์กฐ๊ฑด์ ๋ง์กฑ์ํค๋ ๋์ ๋ธ๋ญ์ ๋ฐ๋ณต(๋ฐ๋ณต ํ์ ๋ชจ๋ฅผ๋)
while(์กฐ๊ฑด์){
// ์กฐ๊ฑด์์ ์ฐ์ฐ๊ฒฐ๊ณผ๊ฐ ์ฐธ์ธ๋์ ๋ฐ๋ณต๋ ๋ฌธ์ฅ์ ์ ๋๋ค
}
public class Practice_์ด์คfor๋ฌธ3 {
public static void main(String[] args) {
int i=5;
while(i--!=0) {
System.out.println(i+ "- I CAN DO IT.");
}
}
}