第二章数据类型课后习题
1.下列哪些是合法的变量名?如果合法,你认为它是一个好的助记符(能提醒你它的用途)吗?
(a) stock_code 合法、好的助记符
(b) money$ 非法,$为非法字符
(c) Jan_Sales 合法、好的助记符
(d) X-RAY 非法,–为非法字符
(e) int 非法,int为关键字
(f) xyz 合法、不是好的助记符
(g) 1a 非法,变量名必须以字母或下划线打头
(h) invoice_total合法、好的助记符
(i) john's_exam_mark非法,’为非法字符
(j) default 非法,default为关键字
2.请确定下列常量的数据类型:
(a) 'x' char
(b) -39 int
(c) 39.99 double
(d) -39.0 double
3.下列哪些是合法的变量定义?
(a) integer account_code ; 非法,无integer类型
(b) float balance ; 合法
(c) decimal total ; 非法,无decimal类型
(d) int age ; 合法
(e) double int ; 非法,int为关键字,不能作为变量名
(f) char c ; 合法
4.写出下列各小题中的变量定义:
(a) 整型变量number_of_transactions和age_in_years
int number_of_transactions, age_in_years;
(b) 单精度浮点型变量total_pay,tax_payment,distance和average
float total_pay, tax_payment, distance, average;
(c) 字符型变量account_type
char account_type;
(d) 双精度浮点型变量gross_pay
double gross_pay;
5. 为下列各小题写出最合适的变量定义:
(a) 班级中的学生人数int number_of_students;
(b) 平均价格float average_price;
(c) 自1900年1月1日以来的天数int days_since_1900;