编写一个程序,把用分钟表示的时间转换成用小时和分钟表示的肘间。使用 #define 或 const 创建一个表示 60 的符号常量或 const 变量。通过 while 循环让用户重复输入值, 直到用户输入小于或等于0的值才停止循环。
# include
# define M2S 60
int main(){
int mins;
printf("请输入您的mins:");
while(scanf("%d", &mins) && mins>0){
while(getchar()!= '\n') ;
printf("%d 分钟 = %d 小时 %d 分钟\n", mins, mins/M2S, mins%M2S);
printf("请输入您的mins:");
}
return 0;
}
# include
int main(){
int mins;
const int m2s = 60;
printf("\n请输入您的mins:");
while(scanf("%d", &mins) && mins>0){
while(getchar()!= '\n') ;
printf("%d 分钟 = %d 小时 %d 分钟\n", mins, mins/m2s, mins%m2s);
printf("请输入您的mins:");
}
return 0;
}
编写一个程序,提示用户输入一个整数,然后打印从该数到比该数大10的所有整数(例如。用户输入5,则打印5~15的所有整数,包括 5和15)。要求打印的各值之间用一个空格。制表符或换行符分开。
# include
int main(){
int n;
printf("\n请输入您的整数:");
scanf("%d", &n);
for(int i=0;i<=10;++i)
printf("%d\t", n+i);
return 0;
}
# include
int main(){
int n;
printf("\n请输入您的整数:");
scanf("%d", &n);
for(int i=0;i<=10;++i)
printf("%d\n", n+i);
return 0;
}
编写一个程序。提示用户输入天数,然后将其转换成周数和天数。例如,用户输入18,则转换成2周4天。以下面的格式显示结果:
18 days are 2 weeks, 4 days
通过 while 循环让用户重复输入天数,当用户输入一个非正值肘 (如0或-20),循环结束。
# include
int main(){
int mins;
const int m2s = 7;
printf("\n请输入您的天数:");
while(scanf("%d", &mins) && mins>0){
while(getchar()!= '\n') ;
printf("%d days are %d weeks, %d days\n", mins, mins/m2s, mins%m2s);
printf("请输入您的mins:");
}
return 0;
}
编写一个程序,提示用户输入一个身高(单位:厘米),并分别以厘米和英寸为单位显示该值。允许有小数部分。程序应该能让用户重复输入身高,直到用户输入一个非正值。其输出示例如下:
Enter height in centimeters: 182
182.0 cm = 5 feet, 11.7 inches
Enter height in centimeters (<=0 to quit) : 168.7
168.0 cm = 5 feet, 6.4 inches
Enter height in centimeters (<=0 to quit) : 0
bye
# include
int main(){
float mins;
const float m2s = 2.54;
printf("\nEnter height in centimeters:");
while(scanf("%f", &mins) && mins>0){
while(getchar()!= '\n') ;
printf("%.1f cm = %d feet, %.1f inches\n", mins, (int)(mins/m2s/12), mins/m2s- (int)(mins/m2s/12)*12);
printf("Enter height in centimeters(<=0 to quit):");
}
printf("bye\n");
return 0;
}
修改程序addemup.c(程序清单5.13),你可以认为addemup.c是计算20天里赚多少钱的程序(假设第1天赚$1,第2天赚$2,第3天赚$3,以此类推 )。修改程序,使其可以与用户交互,根据用户输入的数进行计算 (即,用读入的一个变量来代替20)。
# include
int main(){
int days;
int sum=0;
printf("\n请输入工期:");
scanf("%d", &days);
for(int i=1;i<=days;++i)
sum+=i;
printf("%d 天的薪酬为 %d \n", days, sum);
return 0;
}
修改编程练习5的程序。使其能计算整数的平方和(可以认为第1天赚$1,第2天赚$4。笫3天赚$9,以此类推,这看起来很不错)。C 没有平方函数。但是可以用 n * n 来表示 n 的平方。
# include
int main(){
int days;
int sum=0;
printf("\n请输入工期:");
scanf("%d", &days);
for(int i=1;i<=days;++i)
sum+=i*i;
printf("%d 天的薪酬为 %d \n", days, sum);
return 0;
}
编写一个程序,提示用户输入一个double类型的数。并打印该数的立方值。自己设计一个函数计算并打印立方值。main()函数要把用户输入的值传递给该函数。
# include
void cube(double n){
printf("%lf * %lf *%lf = %lf\n", n,n,n,n*n*n);
}
int main(){
double days;
printf("\n请输入一个数字 :");
scanf("%lf", &days);
cube(days);
return 0;
}
编写一个程序,显示求模运算的结果。把用户输入的第1个整数作为求模运算符的第2个运算对象,该数在运算过程中保持不变。用户后面输入的数是第1个运算对象。当用户输入一个非正值肘,程序结束。其输出示例如下:
This program computes moduli。
Enter an integer to serve as the second operana: 256
Now enter the first operand: 438
438 % 256 is 182
Enter next number for first operand (<=0 to quit): 1234567
1234567 % 256 is 135
Enter next number for first operand (<=0 to quit) : 0
Done
# include
int main(){
int first;
int second;
printf("\nThis program computes moduli。\n");
printf("Enter an integer to serve as the second operana:");
scanf("%d",&second);
printf("Now enter the first operand: ");
while(scanf("%d", &first) && first>0){
while(getchar()!= '\n') ;
printf("%d %% %d is %d \n", first, second, first%second);
printf("Enter next number for first operand (<=0 to quit): ");
}
printf("Done\n");
return 0;
}
编写一个程序,要求用户输入一个华氏温度。程序应读取 double类型的值作为温度值, 并把该值作为参数传递给一个用户自定义的函数Temperatures()该函数计算摄氏温度和开氏温度, 并以小数点后面两位数字的精度显示3种温度。要使用不同的温标来表示这3个温度值。下面是华氏温度转摄氏温度的公式:
摄氏温度 =5.0/9.0 * (华氏温度 -32.0)
开氏温标常用于科学研究。0 表示绝对零,代表最低的温度。下面是摄氏温度转开氏温度的公式:
开氏温度 =摄氏温度 +273.16
Temperatures () 函数中用 const 创建温度转换中使用的变量。在main()函数中使用一个循环让用户重复输入温度, 当用户输入q或其他非数字时。循环结束。scanf () 函数返回读取数据的数量,所以如果读取数字则返回1, 如果读取q则不返回1。可以使用==运算符将 scanf () 的返回值和1作比较。测试两值是否相等。
# include
void Temperatures(float t){
const float h2s = 32;
const float h2s_r = 5.0/9.0;
const float s2k = 273.16;
float s = h2s_r * (t - h2s);
float k = s + s2k;
printf("华摄氏度:%.2f \n", t);
printf("摄氏度:%.2f \n", s);
printf("开氏度:%.2f \n", k);
}
int main(){
float t;
printf("请输入华摄氏度:");
while(scanf("%f",&t)==1){
Temperatures(t);
printf("请输入华摄氏度(按Q键退出):");
}
printf("Done\n");
return 0;
}