-
Notifications
You must be signed in to change notification settings - Fork 0
Home
daesoop edited this page Sep 2, 2018
·
1 revision
여기는 본문
- 리스트 1
- 리스트 2
여기는 인용문 입니다.
package projectEx2;
public class mainClass {
public static void main(String[] args) {
int i = 10;
int j = 20;
System.out.printf("%d + %d\n", i, j);
float e = 1.234f;
double g = 1.12345;
System.out.printf("e = %.3f\n" , e);
System.out.printf("g = %.4f\n", g);
int x = 10;
int u = 18;
System.out.println("x % u = " + (x % u));
}
}