본문 바로가기

Learning/JAVA

Java와 Eclipse 설치 후 간단한 출력문 작성


 

2019-03 R | Eclipse Packages

438 MB 9,040 DOWNLOADS The Modeling package provides tools and runtimes for building model-based applications. You can use it to graphically design domain models, to leverage those models at design time by creating and editing dynamic instances, to collabo

www.eclipse.org


  • 변수 a 선언하고 숫자 5 값 주기, 홍길동 이름 출력
1
2
3
4
5
6
7
8
9
10
public class ExamTest01 {
    public static void main(String[] args){
        int a = 5;
        System.out.print("a= ");
        System.out.println(a);
        String name = "홍길동";
        System.out.print("name= ");
        System.out.println(name);
    }
}
 

 

  • 변수 num, num1과 그 합 구하기
1
2
3
4
5
6
7
8
9
10
11
12
public class NumTest {
    public static void main(String[] args){
        int num = 100;
        int num1 = 200;
        System.out.print("num = ");
        System.out.println(num);
        System.out.print("num1 = ");
        System.out.println(num1);
        System.out.print("num+num1 = ");
        System.out.println(num+num1);
    }
}

 

  • 나이와 이름 출력하기
1
2
3
4
5
6
7
8
package day01;
public class Exam02 {
       public static void main(String[] args) {
              int age = 100;
              String name = "홍길동";
              System.out.println(name +"의 나이는 " +age +"세입니다.");
       }
}
 

 

 

'Learning > JAVA' 카테고리의 다른 글

메인함수 클래스를 분리, 출력문 불러오기  (0) 2020.06.01
1차원 배열, 2차원 배열  (0) 2020.06.01
Switch문, for문, while문  (0) 2020.06.01
조건문, 값 입력하기  (0) 2020.06.01
자료형, if문, 다중 if문  (0) 2020.06.01