1. 程式人生 > >C Primer Plus 第五章 課後答案

C Primer Plus 第五章 課後答案

目錄

複習練習

程式設計練習

bye

Done

複習練習

1.假設所有變數的型別都是int,下列各項變數的值是多少:

a.x = (2 + 3) * 6;

b.x = (12 + 6)/2*3;

c.y = x = (2 + 3)/4;

d.y = 3 + 2*(x = 7/2);

a.x = 30

b.x = 27

c.y = 1, x = 1

d.y = 9, x = 3

2.假設所有變數的型別都是int,下列各項變數的值是多少:

a.x = (int)3.8 + 3.3;

b.x = (2 + 3) * 10.5;

c.x = 3 / 5 * 22.0;

d.x = 22.0 * 3 / 5;

a.x = 6

b.x = 52

c.x = 0

d.x = 13

3.對下列各表示式求值:

a.30.0 / 4.0 * 5.0;

b.30.0 / (4.0 * 5.0);

c.30 / 4 * 5;

d.30 * 5 / 4;

e.30 / 4.0 * 5;

f.30 / 4 * 5.0;

a.37.5

b.1.5

c.35

d.37

e.37.5

f.35.0

4.請找出下面的程式中的錯誤

int main(void) 
{ 
    int i = 1, 
    float n; 
    printf("Watch out! Here come a bunch of fractions!\n"); 
    while (i < 30) 
        n = 1/i; 
    printf(" %f", n); 
    printf("That's all, folks!\n"); 
    return; 
}
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    int i = 1;
    float n;
    printf("Watch out! Here come a bunch of fractions!\n");
    while (i < 30)
    {
        n = 1/i;
        printf(" %f", n);
        i++;
    }
    printf("That's all, folks!\n");
    return 0;
}

5.這是程式清單 5.9 的另一個版本。從表面上看,該程式只使用了一條 scanf()語句,比程式清單5.9簡單。請找出不如原版之處

#include <stdio.h> 
#define S_TO_M 60 
int main(void) 
{ 
    int sec, min, left; 
    printf("This program converts seconds to minutes and "); 
    printf("seconds.\n"); 
    printf("Just enter the number of seconds.\n"); 
    printf("Enter 0 to end the program.\n"); 
    while (sec > 0) 
    { 
        scanf("%d", &sec); 
        min = sec/S_TO_M; 
        left = sec % S_TO_M; 
        printf("%d sec is %d min, %d sec. \n", sec, min, left); 
        printf("Next input?\n"); 
    } 
    printf("Bye!\n"); 
    return 0; 
}
//5.9
#include <stdio.h> 
#define SEC_PER_MIN 60      // 1分鐘60秒 
int main(void) 
{ 
    int sec, min, left; 
    printf("Convert seconds to minutes and seconds!\n"); 
    printf("Enter the number of seconds (<=0 to quit):\n"); 
    scanf("%d", &sec);      // 讀取秒數 
    while (sec > 0) 
    {
         min = sec / SEC_PER_MIN;  // 截斷分鐘數 
        left = sec % SEC_PER_MIN;  // 剩下的秒數 
        printf("%d seconds is %d minutes, %d seconds.\n", sec, min, left); 
        printf("Enter next value (<=0 to quit):\n"); 
        scanf("%d", &sec); 
    } 
    printf("Done!\n"); 
    return 0; 
}
  1. sec沒有進行初始化,記憶體位置上是一個垃圾值
  2. 當要結束輸入的時候,仍然會輸出一次0

6.下面的程式將打印出什麼內容?

#include <stdio.h> 
#define FORMAT "%s! C is cool!\n" 
int main(void) 
{ 
    int num = 10; 
    printf(FORMAT,FORMAT); 
    printf("%d\n", ++num); 
    printf("%d\n", num++); 
    printf("%d\n", num--); 
    printf("%d\n", num); 
    return 0; 
}

%s! C is cool!

! C is cool!

11

11

12

11

7.下面的程式將打印出什麼內容?

#include <stdio.h> 
int main(void) 
{ 
    char c1, c2; 
    int diff; 
    float num; 
    c1 = 'S'; 
    c2 = 'O'; 
    diff = c1 - c2; 
    num = diff; 
    printf("%c%c%c:%d %3.2f\n", c1, c2, c1, diff, num); 
    return 0; 
}

SOS:4  4.00

8.下面的程式將打印出什麼內容?

#include <stdio.h> 
#define TEN 10 
int main(void) 
{ 
    int n = 0; 
    while (n++ < TEN) 
    printf("%5d", n); 
    printf("\n"); 
    return 0; 
}

    1    2    3    4    5    6    7    8    9   10

9.修改上一個程式,使其可以列印字母a~g。

#include <stdio.h> 
#define TEN 'g'
int main(void) 
{ 
    char n = 'a' - 1; 
    while (n++ < TEN) 
    printf("%5c", n); 
    printf("\n"); 
    return 0; 
}

10.假設下面是完整程式中的一部分,它們分別列印什麼?

a. 
int x = 0; 
while (++x < 3) 
printf("%4d", x); 

b. 
int x = 100; 
while (x++ < 103) 
    printf("%4d\n",x); 
printf("%4d\n",x); 

c. 
char ch = 's'; 
while (ch < 'w') 
{ 
    printf("%c", ch); 
    ch++; 
} 
printf("%c\n",ch);

a.

   1   2

b.

 101

 102

 103

 104

c.

stuvw

11.下面的程式會打印出什麼?

#define MESG "COMPUTER BYTES DOG" 
#include <stdio.h> 
int main(void) 
{ 
    int n = 0; 
    while ( n < 5 ) 
        printf("%s\n", MESG); 
    n++; 
    printf("That's all.\n"); 
    return 0;
}

重複列印  COMPUTER BYTES DOG  直到程式終止

12.分別編寫一條語句,完成下列各任務(或者說,使其具有以下副作用):

a.將變數x的值增加10

b.將變數x的值增加1

c.將a與b之和的兩倍賦給c

d.將a與b的兩倍之和賦給c

x = x + 10

x = x + 1

c = 2 * (a + b)

c = a + 2 * b

13.分別編寫一條語句,完成下列各任務:

a.將變數x的值減少1

b.將n除以k的餘數賦給m

c.q除以b減去a,並將結果賦給p

d.a與b之和除以c與d的乘積,並將結果賦給x

x = x - 1

m = n % k

p = q / (b - a)//??歧義

x = (a + b) / (c * d)

程式設計練習

1.編寫一個程式,把用分鐘表示的時間轉換成用小時和分鐘表示的時間。使用#define或const建立一個表示60的符號常量或const變數。通過while迴圈讓使用者重複輸入值,直到使用者輸入小於或等於0的值才停止迴圈

#include <stdio.h>
#include <stdlib.h>
#define MODEL 60

int main()
{
    int m;
    printf("input m:");
    scanf("%d", &m);
    while(m > 0)
    {
        printf("%d hs %d ms\n", m / MODEL, m % MODEL);
        printf("input m again:");
        scanf("%d", &m);
    }
    return 0;
}

2.編寫一個程式,提示使用者輸入一個整數,然後列印從該數到比該數大10的所有整數(例如,使用者輸入5,則列印5~15的所有整數,包括5和15)。要求列印的各值之間用一個空格、製表符或換行符分開

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int m;
    printf("input m:");
    scanf("%d", &m);
    for(int i = 0; i < 11; i++)
    {
        printf("%d ", m + i);
    }
    printf("\n");
    return 0;
}

3.編寫一個程式,提示使用者輸入天數,然後將其轉換成周數和天數。例如,使用者輸入18,則轉換成2周4天。以下面的格式顯示結果:

18 days are 2 weeks, 4 days.

通過while迴圈讓使用者重複輸入天數,當用戶輸入一個非正值時(如0或-20),迴圈結束

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int d;
    printf("input d:");
    while(~scanf("%d", &d) && d > 0)
    {
        printf("%d days are %d weeks, %d days.\n", d, d / 7, d % 7);
        printf("input again:");
    }
    return 0;
}

4.編寫一個程式,提示使用者輸入一個身高(單位:釐米),並分別以釐米和英寸為單位顯示該值,允許有小數部分。程式應該能讓使用者重複輸入身高,直到使用者輸入一個非正值。其輸出示例如下:

Enter a height in centimeters: 182

182.0 cm = 5 feet, 11.7 inches

Enter a height in centimeters (<=0 to quit): 168.7

168.0 cm = 5 feet, 6.4 inches

Enter a height in centimeters (<=0 to quit): 0

bye

#include <stdio.h>
#include <stdlib.h>

int main()
{
    float m;
    printf("Enter a height in centimeters:");
    while(~scanf("%f", &m) && m > 0)
    {
        int f = m / 31;//不用int型接收的話,用%d列印float型別會因為位元組截斷輸出而出現問題
        printf("%.1f cm = %d feet,%.1f inches\n", m, f, m * 0.39370 - f * 12);
        printf("Enter a height in centimeters (<=0 to quit):");
    }
    printf("bye\n");
    return 0;
}

5.修改程式addemup.c(程式清單5.13),你可以認為addemup.c是計算20天裡賺多少錢的程式(假設第1天賺$1、第2天賺$2、第3天賺$3,以此類推)。修改程式,使其可以與使用者互動,根據使用者輸入的數進行計算(即,用讀入的一個變數來代替20)

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int count, sum, d;
    count = 0;
    sum = 0;
    printf("input d:");
    scanf("%d", &d);
    while (count++ < d)
        sum = sum + count;
    printf("sum = %d\n", sum);
    return 0;
}

6.修改程式設計練習5的程式,使其能計算整數的平方和(可以認為第1天賺$1、第2天賺$4、第3天賺$9,以此類推,這看起來很不錯)。C沒有平方函式,但是可以用n * n來表示n的平方

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int count, sum, d;
    count = 0;
    sum = 0;
    printf("input d:");
    scanf("%d", &d);
    while (count++ < d)
        sum = sum + count * count;
    printf("sum = %d\n", sum);
    return 0;
}

7.編寫一個程式,提示使用者輸入一個double型別的數,並列印該數的立方值。自己設計一個函式計算並列印立方值。main()函式要把使用者輸入的值傳遞給該函式

#include <stdio.h>
#include <stdlib.h>

void func(double x)
{
    printf("%.2lf\n", x * x * x);
}

int main()
{
    double x;
    printf("input x:");
    scanf("%lf", &x);
    func(x);
    return 0;
}

8.編寫一個程式,顯示求模運算的結果。把使用者輸入的第1個整數作為求模運算子的第2個運算物件,該數在運算過程中保持不變。使用者後面輸入的數是第1個運算物件。當用戶輸入一個非正值時,程式結束。其輸出示例如下:

This program computes moduli.

Enter an integer to serve as the second operand: 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 <stdio.h>
#include <stdlib.h>

int main()
{
    int so;
    int fo;
    printf("This program computes moduli.\nEnter an integer to serve as the second operand:");
    scanf("%d", &so);
    printf("Now enter the first operand: ");
    while(~scanf("%d", &fo) && fo > 0)
    {
        printf("%d %% %d is %d\n", fo, so, fo % so);
        printf("Enter next number for first operand (<= 0 to quit): ");
    }
    printf("Done\n");
}

9.編寫一個程式,要求使用者輸入一個華氏溫度。程式應讀取double型別的值作為溫度值,並把該值作為引數傳遞給一個使用者自定義的函式Temperatures()。該函式計算攝氏溫度和開氏溫度,並以小數點後面兩位數字的精度顯示3種溫度。要使用不同的溫標來表示這3個溫度值。下面是華氏溫度轉攝氏溫度的公式:

攝氏溫度 = 5.0 / 9.0 * (華氏溫度 - 32.0)

開氏溫標常用於科學研究,0表示絕對零,代表最低的溫度。下面是攝氏溫度轉開氏溫度的公式:

開氏溫度 = 攝氏溫度 + 273.16

Temperatures()函式中用const建立溫度轉換中使用的變數。在main()函式中使用一個迴圈讓使用者重複輸入溫度,當用戶輸入 q 或其他非數字時,迴圈結束。scanf()函式返回讀取資料的數量,所以如果讀取數字則返回1,如果讀取q則不返回1。可以使用==運算子將scanf()的返回值和1作比較,測試兩值是否相等

#include <stdio.h>
#include <stdlib.h>

void Temperatures(double tem)
{
    const double w0 = 5.0 / 9.0, w1 = 32.0;
    const double k = 273.16;
    printf("%.2lf\n", tem);
    printf("%.2lf\n", w0 * (tem - w1));
    printf("%.2lf\n", k + w0* (tem - w1));
}

int main()
{
    double tem;
    printf("input tem:");
    while(scanf("%lf", &tem) == 1)
    {
        Temperatures(tem);
        printf("input again:");
    }
    return 0;
}