-
Notifications
You must be signed in to change notification settings - Fork 0
test9
scienthoon edited this page Jan 26, 2019
·
1 revision
package yh20190126;
public class test9 {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("*");
System.out.println("**");
System.out.println("**");
System.out.println("***");
System.out.println("****");
}
}
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
}
}