1) if๋ฌธ
* ํ์1)
* if(์กฐ๊ฑด์){
* ์กฐ๊ฑด์ด ์ฐธ์ผ๋ ์ํํ ๋ฌธ์ฅ;
* ..
* }
// 60์ ์ด์์ด๋ฉด ํฉ๊ฒฉ (if๋ฌธ)
public class Practice_1 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("์ ์๋ฅผ ์
๋ ฅํ์ธ์");
int score = scan.nextInt();
if (score > 60) {
System.out.println("ํฉ๊ฒฉ์
๋๋ค");
}
}
}
ํ์2)
* if(์กฐ๊ฑด์){
* ์กฐ๊ฑด์ด ์ฐธ์ผ๋ ์ํํ ๋ฌธ์ฅ;
* ..
* }else{
* ์กฐ๊ฑด์ด ๊ฑฐ์ง์ผ๋ ์ํํ ๋ฌธ์ฅ;
* }
ํ์3)
* if(์กฐ๊ฑด์1){
* ์กฐ๊ฑด์1์ด ์ฐธ์ผ๋ ์ํํ ๋ฌธ์ฅ;
* ..
* }else if(์กฐ๊ฑด์2){
* ์กฐ๊ฑด์2์ด ์ฐธ์ผ๋ ์ํํ ๋ฌธ์ฅ; // ์ฌ๋ฌ๊ฐ์ else if ์ฌ์ฉ ๊ฐ๋ฅ
* }
* ..
* else{
* ์กฐ๊ฑด์ด ๋ชจ๋ ๊ฑฐ์ง์ผ๋ ์ํํ ๋ฌธ์ฅ
* }
import java.util.Scanner;
// ์ ์๋ฅผ ์
๋ ฅ๋ฐ์ ํ์ ์ ์์๋ณด์์ค
public class Practice_10 {
public static void main(String[] args) {
int score = 0;
char grade = ' ';
Scanner scan = new Scanner (System.in);
System.out.println("์ ์๋ฅผ ์
๋ ฅํ์ธ์");
score = scan.nextInt();
if(score>=90) {
grade = 'A';
}else if(score>=80) {
grade = 'B';
}else if(score >= 70) {
grade = 'C';
}else {
grade='D';
}
System.out.println("ํ์ ์ :" + grade);
}
}
if(์กฐ๊ฑด์1){
if(์กฐ๊ฑด์2){
}else{
}
}else{
}
switch (์กฐ๊ฑด์) {
case ๊ฐ1 :
// ์กฐ๊ฑด์์ ๊ฒฐ๊ณผ๊ฐ ๊ฐ1๊ณผ ๊ฐ์ ๊ฒฝ์ฐ ์ํ๋ ๋ฌธ์ฅ๋ค
//...
break;
case ๊ฐ2 :
// ์กฐ๊ฑด์์ ๊ฒฐ๊ณผ๊ฐ ๊ฐ2์ ๊ฐ์ ๊ฒฝ์ฐ ์ํ๋ ๋ฌธ์ฅ๋ค
//...
break; // switch๋ฌธ์ ๋ฒ์ด๋๋ค.
//...
default :
// ์กฐ๊ฑด์์ ๊ฒฐ๊ณผ์ ์ผ์นํ๋ case๋ฌธ์ด ์์ ๋ ์ํ๋ ๋ฌธ์ฅ๋ค
//...
}
import java.util.Scanner;
// ์์ ์
๋ ฅ๋ฐ์ ๊ณ์ ์ ์์๋ณด๊ธฐ (switch)
public class Practice_11 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("ํ์ฌ ์์ ์
๋ ฅํ์ธ์");
int month = scan.nextInt();
switch(month) {
case 3:
case 4:
case 5:
System.out.println("ํ์ฌ ๊ณ์ ์ ๋ด์
๋๋ค.");
break;
case 6:
case 7:
case 8:
System.out.println("ํ์ฌ ๊ณ์ ์ ์ฌ๋ฆ์
๋๋ค.");
break;
case 9:
case 10:
case 11:
System.out.println("ํ์ฌ ๊ณ์ ์ ๊ฐ์์
๋๋ค.");
break;
default:
// case 12:
// case 1:
// case 2:
System.out.println("ํ์ฌ ๊ณ์ ์ ๊ฒจ์ธ์
๋๋ค.");
}
}
}
// 1๋ถํฐ 10์ฌ์ด์ ๋์๋ฅผ 20๊ฐ ์ถ๋ ฅํ์ธ์
public class Practice_12 {
public static void main(String[] args) {
for(int i = 1; i <=10; i++) {
// System.out.println(Math.random()); //0.0~1.0 ์ฌ์ด
// System.out.println(Math.random()*10); // 0์์ 10์ฌ์ด
System.out.println((int)(Math.random()*10)); // ํ๋ณํ
}
}
}
for(int i=1;i<=5;i++) {
System.out.println("I can do it.");
}
public class Practice_13 {
public static void main(String[] args) {
for(int i=1; i<=3; i++) {
System.out.println("hello");
}
}
}
public class Practice_14 {
public static void main(String[] args) {
for(int i=1; i<=9; i++) {
for(int j=1; j<=9; j++) {
System.out.println(i + "*" + j + "=" + (i*j));
}
System.out.println();
}
}
}
while (์กฐ๊ฑด์) {
// ์กฐ๊ฑด์์ ์ฐ์ฐ๊ฒฐ๊ณผ๊ฐ ์ฐธ(true)์ธ ๋์, ๋ฐ๋ณต๋ ๋ฌธ์ฅ๋ค์ ์ ๋๋ค.
}
package review_sun;
public class Practice_9 {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i=0; i<=10; i++) {
if(i%3==0)
continue;
System.out.println(i);
}
}
}
๋ฐฐ์ด์ ์ ์ธ : ๋ฐฐ์ด์ ๋ค๋ฃจ๊ธฐ ์ํ ์ฐธ์กฐ๋ณ์์ ์ ์ธ
public class Practice_18 {
public static void main(String[] args) {
int [] score; //๋ฐฐ์ด score์ ์ ์ธ
score = new int[5]; //๋ฐฐ์ด์ ์์ฑ
score[3] = 100;
System.out.println("score[0]="+score[0]);
System.out.println("score[1]="+score[1]);
System.out.println("score[2]="+score[2]);
System.out.println("score[3]="+score[3]);
System.out.println("score[4]="+score[4]);
}
}
ex) int tmp = arr.length;