预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共36页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

入门课程概况主要内容Java简介Java简介Java起源Java的深远影响java应用Java语言特性Java开源(OpenSource)项目Java开发准备计算机CPU指令编程语言第一个程序编译Java注意:运行前设置系统路径。编译和运行程序结构第二个程序变量java关键字作业1classHello3{ publicstaticvoidmain(String[]arguments){ Stringfoo; foo="IAP6.092"; System.out.println(foo); foo="Somethingelse"; System.out.println(foo); } }类型java基本数据类型java基本数据类型java基本数据类型运算符classDoMath{ publicstaticvoidmain(String[]arguments){ intscore; score=1+2*3; System.out.println(score); score=score/2; System.out.println(score); } }浮点数:float、double类型转换classDoMath2{ publicstaticvoidmain(String[]arguments){ intscore;score=1+2*3;System.out.println(score); doublecopy=score; copy=copy/2; System.out.println(copy); score=copy; System.out.println(score); } }强制类型转换classDoMath3{ publicstaticvoidmain(String[]arguments){ intscore; score=1+2*3; System.out.println(score); doublecopy=score; copy=copy/2; System.out.println(copy); score=(int)copy; System.out.println(score); } }作业:温度转换器