C primer plus 第六版 第6版 003章 第三章 编程 练习 答案 中文

编程练习:

1.通过实验编写带有此类问题的程序,观察系统如何处理整数上溢,浮点数上溢,和浮点数下移的情况?

整数上溢:

int i = 2147483647;

unsigned int j = 4294967295;

printf("%d %d %d\n", i, i+1, i+2);

printf("%u %u %u\n", j, j+1, j+2);

刚翻了下C99标准,

有符号整数溢出属未定义行为An example of undefined behavior is the behavior on integer overflow。

无符号整数overflows or out-of-bounds results silently wrap,我理解是“默默循环”。即4294967295之后从0开始循环。

2.编写一个程序,要求提示输入一个ASCII码值,如66,然后打印输入字符。

/* charcode.c-displays code number for a character */

#include

int main(void)

{

char ch;

printf("Please enter a character.\n");

scanf("%c", &ch);   /* user inputs character */

printf("The code for %c is %d.\n", ch, ch);

return 0;

}

Please enter a character.

m

The code for m is 109.

Program ended with exit code: 0

3.发出一声警报,打印下面文本:

Startled by the sudden sound,Sally shouted,

"By the Great Pumpkin,what was that!"

printf("%c",'\a');

printf("Startled by the sudden sound,Sally shouted,\n");

printf("\"By the Great Pumpkin,what was that!\"\n");

我用XCode写的代码,表示并没有听到警报声音。

4.编写一个程序,读取一个浮点数,先打印成小数点形式,在打印成指数形式。然后,如果系统支持,再打印成p计数法,及十六进制计数法。

按以下格式输出(实际显示的指数位数因系统而异):

float aNumber ;

scanf("%f",&aNumber);

printf("先打印成小数点形式: %f\n",aNumber);

printf("再打印成指数点形式: %e\n",aNumber);

printf("p计数法形式: %a\n",aNumber);

5.一年大约有3.156*10的七次方秒,编写一个程序,提示用户输入年龄,然后显示该年龄对应的秒数。

double seconds = 3.156e7;

unsigned age;

printf("输入年龄:");

scanf("%d",&age);

printf("这个年龄对应的秒数是:%f",age * seconds);

6.一个水分子的质量约为3.0*10的-23次方克,1夸脱水大约是950克。编写一个程序,输入夸脱数,显示水分子的数量。

#define QuarsWaterMolecules 950

unsigned weight;

printf("输入夸脱数:");

scanf("%ud",&weight);

printf("水分子数量:%ul",weight * QuarsWaterMolecules);

7. 一英寸相当于2.54厘米,编写一个程序,提示用户输入身高(/英寸),然后已厘米为单位显示身高。

#define InchToCM 2.54

float height;

printf("输入身高:\n");

scanf("%f",&height);

printf("这个身高换成厘米:%f",height * InchToCM);

8.在美国的体积测量系统中,1品脱等于2杯,1杯等于8盎司,1盎司等于2大汤勺,1大汤勺等于3茶勺。

编写一个程序,提示用户输入杯数,并以品脱,盎司,汤勺,茶勺为单位显示等价容量。

#define KPintToCup 2

#define KCupToOunce 8

#define OunceToSoupLadle 2

#define SoupLadleToTeaLadle 3

printf("输入杯数:");

unsigned int cups;

scanf("%ud\n",&cups);

printf("品脱:%d\n",cups * KPintToCup);

printf("盎司:%d\n",cups * KPintToCup * KCupToOunce);

printf("汤勺:%d\n",cups * KPintToCup * KCupToOunce * OunceToSoupLadle);

printf("茶勺:%d\n",cups * KPintToCup * KCupToOunce * OunceToSoupLadle * SoupLadleToTeaLadle);

你可能感兴趣的:(C primer plus 第六版 第6版 003章 第三章 编程 练习 答案 中文)