编程练习——《C Primer Plus》
Unit Three-Program test
Program_test_5
/* Program Test :一年大约有 3.156×10^7秒。编写一个程序,提示用户输入年龄,然后显示该年龄对应的秒数。
*/
#include<stdio.h>
int main(void)
{int i_age;double d_seconds;double d_year = 3.156E7;printf("Please input your age:\n");scanf("%d",&i_age);d_seconds = i_age * d_year;printf("The years transfer into seconds of your age is %.2f", d_seconds);return 0;
}
Program_test_7
/*Program Test 7
1英寸相当于 2.54 厘米。
编写一个程序,提示用户输入年龄
然后显示该年龄对应的描述。
*/
#include<stdio.h>
int main(void)
{double d_inchs, d_height;printf("Please input your height(by inchs):\n");scanf("%lf",&d_inchs); //double型 scanf()函数要用 %lf d_height = d_inchs*2.54;printf("Your height is: %.2f by centimeters.\n",d_height); // printf() 函数中 float 和 double 都可以用 %f return 0;}
Program_test_8
/*Program Test 8
在美国的体积测量系统中;
1品脱等于2杯;1杯等于8蛊司;1蛊司等于2大汤勺;1大汤勺等于3茶勺;
编写一个程序,提示用户输入杯数;
并以品脱、蛊司、汤勺、茶勺为单位显示等价容量。
*/
#include <stdio.h>
int main(void)
{float pints, cups, ounces, tablespoons, teaspoons ;printf("Please input some cups:");scanf("%f", &cups);pints = cups/2;ounces = cups*8;tablespoons = ounces*2;teaspoons = tablespoons*3;printf("%.2f,%.2f,%.2f,%.2f",pints,ounces,tablespoons,teaspoons);return 0;
}