MOOC哈⼯⼤2020C语⾔程序设计精髓练兵区编程题第四周1 检测⽤户错误输⼊(4分)
题⽬内容:
int main(){
int a,b;
int x = scanf("%d %d",&a,&b);
if(x == 2){
printf("a = %d, b = %d\n",a,b);
} else{
printf("Input error!");
}
return 0;
}
2 闰年判断(6分)
题⽬内容:
从键盘任意输⼊⼀个公元年份(⼤于等于1),判断它是否是闰年。若是闰年输出“Yes”,否则输出“No”。要求对输⼊数据进⾏合法性判断。
已知符合下列条件之⼀者是闰年:
(1)能被4整除,但不能被100整除;
(2)能被400整除。
int main(){
int year;
int result = scanf("%d",&year);
if(year >= 1 && result == 1){
if((year %4 == 0 && year % 100 != 0) || year % 400 == 0){
printf("Yes\n");
} else{
printf("No\n");
}
} else{
printf("Input error!\n");
}
return 0;
}
3 程序改错v1.0(7分)
题⽬内容:
下⾯代码的功能是将百分制成绩转换为5分制成绩,具体功能是:如果⽤户输⼊的是⾮法字符或者不在合理区间内的数据(例如输⼊的是a,或者102,或-45等),则程序输出 Input error!,否则将其转换为5分制输出。⽬前程序存在错误,请将其修改正确。并按照下⾯给出的运⾏⽰例检查程序。
int main()
{
int score;
char grade;
printf("Please input score:");
scanf("%d", &score);
if (score < 0 || score > 100)
printf("Input error!\n");
else if (score >= 90)
grade = 'A’;
else if (score >= 80)
grade = 'B';
else if (score >= 70)
grade = 'C';
else if (score >= 60)
grade = 'D';
else
grade = 'E';
printf("grade:%c\n", grade);
return 0;
}
修改后
#include<stdio.h>
int main()
{
int score,x;
char grade;
printf("Please input score:\n");
x=scanf("%d", &score);
if (score < 0 || score > 100 || x!=1){
printf("Input error!\n");
return 0;
}
else if (score >= 90)
grade = 'A';
else if (score >= 80)
grade = 'B';
else if (score >= 70)
grade = 'C';
else if (score >= 60)
grade = 'D';
else
grade = 'E';
printf("grade: %c\n", grade);
return 0;
}
4 字符类型判断(4分)
题⽬内容:
从键盘键⼊任意⼀个字符,判断该字符是英⽂字母(不区分⼤、⼩写)、数字字符还是其它字符。
若键⼊字母,则屏幕显⽰ It is an English character.;若键⼊数字则屏幕显⽰It is a digit character. ;若输⼊其它字符,则屏幕显⽰:It is other character.
int main(){
char c;
printf("Input simple:\n");
scanf("%c",&c);
if(c >= 'A' && c <= 'Z' || c >= 'a' && c <= 'z'){
printf("It is an English character.\n");
} else if(c >= '0' && c <= '9'){
printf("It is a digit character.\n");
} else{
printf("It is other character.\n");
}
return 0;
}
5 快递费⽤计算(7分)
题⽬内容:
上海市的某快递公司根据投送⽬的地距离公司的远近,将全国划分成5个区域:
区421事件内容
1区2区3区4区
同城临近两
省
1500公⾥(含)以内1500——2500公⾥
2500公
⾥以上
上海江苏,
浙江
北京,天津,河北,辽宁,河南,安微,陕西,湖北,江
西,湖南,福建,⼴东,⼭西。
吉林,辽宁,⽢肃,四川,重庆,青海,⼴西,云南,海
南,内蒙古,⿊龙江,贵州。
新疆,西
藏。
快递费按邮件重量计算,由起重费⽤、续重费⽤两部分构成:
(1)起重(⾸重)1公⽄按起重资费计算(不⾜1公⽄,按1公⽄计算),超过⾸重的重量,按公⽄(不⾜1公⽄,按1公⽄计算)收取续重费;
(2)同城起重资费10元,续重3元/公⽄;
(3)寄往1区(江浙两省)的邮件,起重资费10元,续重4元;
(4)寄往其他地区的邮件,起重资费统⼀为15元。⽽续重部分,不同区域价格不同:2区的续重5元/公⽄,3区的续重6.5元/公⽄,4区的续重10元/公⽄。
编写程序,从键盘输⼊邮件的⽬的区域编码和重量,计算并输出运费,计算结果保留2位⼩数。程序中所有浮点数的数据类型均为float。
提⽰:续重部分不⾜⼀公⽄,按1公⽄计算。因此,如包裹重量2.3公⽄:1公⽄算起重,剩余的1.3公⽄算续重,不⾜1公⽄按1公⽄计
算,1.3公⽄折合续重为2公⽄。如果重量应⼤于0、区域编号不能超出0-4的范围。
int main(){
float weight,price;
int area;
scanf("%d,%f",&area,&weight);
if(area < 0 || area > 4 || weight <= 0){
printf("Error in Area\n");
} else{
weight=(int)weight==weight?weight:(int)(weight+1);
if(area==0) price=10+(int)(weight-1)*3;
else if(area==1) price=10+(int)(weight-1)*4;
else if(area==2) price=15+(int)(weight-1)*5;
else if(area==3) price=15+(int)(weight-1)*6.5;
else if(area==4) price=15+(int)(weight-1)*10;
}
printf("Price: %5.2f\n",price);
return 0;
}
6 数位拆分v2.0(4分)
题⽬内容:
从键盘上输⼊⼀个4位数的整数n,编写程序将其拆分为两个2位数的整数a和b,计算并输出拆分后的两个数的加、减、乘、除和求余运算的结果。例如n=-4321,设拆分后的两个整数为a,b,则a=-43,b=-21。除法运算结果要求精确到⼩数点后2位,数据类型为float。求余和除法运算需要考虑除数为0的情况,即如果拆分后b=0,则输出提⽰信息"The second operater is zero!"
int main(){
int n,a,b;
printf("Please input n:\n");
scanf("%d",&n);
a = n / 100;
b = n % 100;
printf("%d,%d\n",a,b);
printf("sum=%d,sub=%d,multi=%d\n",a + b,a - b,a * b);
if(b == 0){
printf("The second operator is zero!\n");
} else{
printf("dev=%.2f,mod=%d\n",(float) a / b,a % b);
}
return 0;
}
7 出租车计价(4分)
题⽬内容:
已知某城市普通出租车收费标准为:起步⾥程为3公⾥,起步费为8元,10公⾥以内超过起步⾥程的部分,每公⾥加收2元,超过10公⾥以上的部分加收50%的回空补贴费,即每公⾥3元。出租车营运过程中,因堵车和乘客要求临时停车等客的,按每5分钟加收2元
计算,不⾜5分钟的不计费。从键盘任意输⼊⾏驶⾥程(精确到0.1公⾥)和等待时间(精确到分钟),请编程计算并输出乘客应⽀付的车费,对结果进⾏四舍五⼊,精确到元。
int main(){
float distance,fee;
int time;
printf("Input distance and time:");
scanf("%f,%d",&distance,&time);
time=time/5;
fee+=2*time;
if(distance>10){
fee+=3*(distance-10);
}
if(distance>3){
distance=distance>=10?10:distance;
fee+=2*(distance-3);
}
if(distance>0){
fee+=8;
}
printf("fee = %.0f\n",fee);
return 0;
}
8 数据区间判断(6分)
题⽬内容:
从键盘输⼊⼀个int型的正整数n(已知:0<n<10000),编写程序判断n落在哪个区间。如果⽤户输⼊的数据不在指定的范围⾥,程序输出"error!"。例如,输⼊265,则该数属于区间 100-999。
int main(){
int n;
printf("Please enter the number:\n");
scanf("%d",&n);
if(n > 0 && n < 10000){
if(n < 10){
printf("%d: 0-9\n",n);
} else if(n < 100){
printf("%d: 10-99\n",n);
}else if(n < 1000){
printf("%d: 100-999\n",n);
} else{
printf("%d: 1000-9999\n",n);
}
} else{
printf("error!\n");
}
return 0;
}
9 计算⼀元⼆次⽅程的根v2.0(4分)
题⽬内容:
根据下⾯给出的求根公式,计算并输出⼀元⼆次⽅程的两个实根,要求精确到⼩数点后4位。其中a,b,c的值由⽤户从键盘输⼊。如果⽤户输⼊的系数不满⾜求实根的要求,输出错误提⽰ "error!"。程序中所有的数据类型均为float。
int main(){
float a,b,c,x,y;
printf("Please enter the coefficients a,b,c:\n");
scanf("%f,%f,%f",&a,&b,&c);
x = -b/2/a;
y = b * b - 4 * a * c;
if(y < 0){
printf("error!\n");
} else{
printf("x1=%7.4f, x2=%7.4f\n",x+sqrt(y)/2/a,x-sqrt(y)/2/a);
}
}
发布评论