-
Notifications
You must be signed in to change notification settings - Fork 0
Home
scienthoon edited this page Jan 12, 2019
·
1 revision
Welcome to the java-lecture wiki!
package lecture20190112;
public class Lecture4 {
public static void main(String[] args) {
// TODO Auto-generated method stub
//형변환실습
double d_num = 10.101010;
System.out.print(d_num);
System.out.print((int)d_num);
char a='a';
System.out.println((int)a);
// 변수 -> 변하는수
//상수 안변하는수
int no1=10;
no1 =20;
final double pi = 3.14;
pi = 3.15
}
}