文章目录
1、输出你最想说的一句话!
- 编写步骤:
- 定义类 Homework1,例如:Homework1
- 定义 main方法
- 控制台输出你最想说的一句话
参考答案:
java
public class Homework1 {
public static void main(String[] args) {
System.out.println("学习一定是辛苦的,但是我可以苦中作乐");
}
}
2、定义所有基本数据类型的变量和字符串变量
- 编写步骤:
- 定义类 Homework2
- 定义 main方法
- 定义所有基本数据类型的变量和字符串变量,并用对应的常量值赋值,然后打印输出这些变量的值
byte | short | int | long | float | double | char | boolean | String |
---|---|---|---|---|---|---|---|---|
100 | 1000 | 123456 | 12345678900 | 5.5 | 8.5 | a,0,尚 | false | HelloWorld |
参考答案:
java
public class Homework2 {
public static void main(String[] args) {
byte byteValue = 100;
System.out.println("byteValue = " + byteValue);
short shortValue = 1000;
System.out.println("shortValue = " + shortValue);
int intValue = 123456;
System.out.println("intValue = " + intValue);
long longValue = 12345678900L;
System.out.println("longValue = " + longValue);
float floatValue = 5.5F;
System.out.println("floatValue = " + floatValue);
double doubleValue = 8.5;
System.out.println("doubleValue = " + doubleValue);
char characterOne = 'a';
System.out.println("characterOne = " + characterOne);
char characterTwo = '0';
System.out.println("characterTwo = " + characterTwo);
char characterThree = '尚';
System.out.println("characterThree = " + characterThree);
boolean booleanValue = false;
System.out.println("booleanValue = " + booleanValue);
String stringValue = "HelloWorld";
System.out.println("stringValue = " + stringValue);
}
}
3、用合适类型的变量存储个人信息并输出
- 编写步骤:
- 定义类 Homework3
- 定义 main方法
- 定义合适类型的变量用于存储自己的姓名、年龄、性别、体重、婚姻状况(已婚用true表示,单身用false表示)等等,然后打印输出这些变量的值
参考答案:
java
public class Homework3 {
public static void main(String[] args) {
String name = "姜姜";
System.out.println("name = " + name);
int age = 18;
System.out.println("age = " + age);
char gender = '男';
System.out.println("gender = " + gender);
double weight = 75.5;
System.out.println("weight = " + weight + "kg");
boolean marry = true;
System.out.println("marry = " + marry);
}
}
4、定义圆周率PI
- 编写步骤:
- 定义类 Homework4
- 定义 main方法
- 定义一个变量PI,用来表示圆周率并赋值为3.14
- 再使用3个变量分别保存圆的半径,分别赋值为1.2、2.5、6
- 使用计算表达式求它们的面积,并输出显示半径和面积值。
参考答案:
java
public class Homework4 {
public static void main(String[] args) {
double PI = 3.14;
double radiusOne = 1.2;
System.out.println("radiusOne = " + radiusOne + ", area = " + PI * radiusOne * radiusOne);
double radiusTwo = 2.5;
System.out.println("radiusTwo = " + radiusTwo + ", area = " + PI * radiusTwo * radiusTwo);
double radiusThree = 6;
System.out.println("radiusThree = " + radiusThree + ", area = " + PI * radiusThree * radiusThree);
}
}
5、简答题
(1)Java的基本数据类型有哪些?String是基本数据类型吗?
参考答案:
java
Java的基本数据类型有:byte,short,int,long,float,double,char,boolean
String不是基本数据类型
(2)char型变量中是否可以存储一个汉字?
参考答案:
java
可以,因为Java中char类型的变量占2个字节,而字符编码值范围是[0,65535]。