1.常量\变量
final int NUMBER=1;
数据类型 number;
2.输入\输出
Scanner sc = new Scanner(System.in);
int age = sc.nextInt();
System.out.print("hello") //直接输出
System.out.println("hello") //换行输出
3.语句
//while循环语句
while(循环条件){
循环体;
}
//for循环语句
for(初始化语句;循环条件;迭代语句){
循环体;
}
//do-while循环语句
do{
循环体;
}while(循环条件);
//if语句
if(判定条件){
}
else if(判定条件){
}
else{
}
//switch语句
switch(month){
case:
break;
default:
break;
}
4.函数方法
修饰符 返回值类型 函数名 (参数类型 形式参数1,参数类型 形式参数2,)
{
执行语句;
return 返回值;
}
5.面向对象
修饰符 class 类名 extends 父类 implements 接口
{
成员变量
成员函数
}
类名 对象名=new 类名()
6.导入其他文件
package com.datastruct.array;
import java.util.Scanner;
网友评论