for
-
java :: for문, while문, do while문 예제 프로그램IT/Java & JSP & FW 2011. 12. 12. 12:43
for 문 이용_원하는 단의 구구단을 출력하는 프로그램 import java.io.*; public class fortest { public static void main(String[] args) throws IOException{ BufferedReader br= new BufferedReader(new InputStreamReader(System.in)); System.out.println("구구단출력프로그램"); System.out.print("숫자입력>"); int user=Integer.parseInt(br.readLine()); for(int i=1;i
-
java :: 다중 if 문, switch문, for문 각종 예제 프로그램IT/Java & JSP & FW 2011. 12. 9. 10:30
제어문 조건제어문, 반복제어문 다중 if 문 특징 (기억) 1.순차조건문 2.트리형구조 3.if else 의 원형을 그대로 따라간다. 다중 if 문 사용_음식주문 프로그램 import java.io.*; public class day05_01 { public static void main(String[] args) throws IOException{ System.out.println("먹고싶은메뉴를 고르세요"); System.out.println("1.짜장, 2.짬뽕, 3.탕수육, 4.팔보채"); System.out.print("메뉴>"); int menu=System.in.read()-48; if(menu==1){ System.out.println("짜장면을 주문하셨습니다."); }else if(men..