관리 메뉴

nalaolla

if~else 본문

JAVA/3. Control

if~else

날아올라↗↗ 2015. 12. 20. 16:35
728x90
반응형
  1. package test.com;
  2.  
  3. public class Test01ifelse {
  4.  
  5.     public static void main(String[] args) {
  6.         // 제어문 : 분기문, 반복문
  7.         // 분기문 : if, if~else, if~else if~else if..., if~else if~else
  8.         // switch~case 비교대상: ~default:
  9.  
  10.         // 반복문 : for, while, do~while
  11.  
  12.         int su = 2;
  13.         if (su == 0) {
  14.             System.out.println("AAA");
  15.         } else if (su == 1) {
  16.             System.out.println("BBB");
  17.         } else if (su == 2) {
  18.             System.out.println("CCC");
  19.         }
  20.  
  21.         else {
  22.             System.out.println("Other");
  23.         }
  24.  
  25.         if ('A' == 65) {
  26.             System.out.println("A");
  27.             if (3 + 5 == 8) {
  28.                 System.out.println("888");
  29.                 if (true) {
  30.                     System.out.println(true);
  31.                 }
  32.             } else {
  33.                 System.out.println("000");
  34.             }
  35.         }
  36.  
  37.         System.out.println("end...");
  38.     }
  39.  
  40. }


728x90
반응형

'JAVA > 3. Control' 카테고리의 다른 글

if~else 자판기2  (0) 2015.12.20
if~else 자판기  (0) 2015.12.20
while과 switch문 사용 연락처입력  (0) 2015.12.20
if~else 성적처리 프로그램  (0) 2015.12.20
if~else 수당계산  (0) 2015.12.20