[C語言刷題] chapter05
原文發(fā)布在 https://www.qarks.top/2020-02-16/chapter05-ep/
今天我們來看看C Primer Plus的課后習題。
## 第一題
### 題目
寫一個程序,將原本用分鐘表示的時間轉換成用分鐘和小時來表示,要求要用到常量,while循環(huán),當輸入小于或等于0時終止程序。
### 分析
小時可以以min/60得到,分鐘取余
### 答案
先在這里聲明,我寫的答案全是我本人寫的,本人想的,有什么問題或疑問可以在評論區(qū)指出。
```c
/* pe01.c -- convert min to hour and min */ ? ? ? ? ? ? ? ?#include <stdio.h>
#define MPH 60 // define the symbolic constant for 60
int main(void) {
? ? ? ? int min = 0, hour = 0, ms = 0;
? ? ? ? printf("Enter minutes(0 to end):\n");
? ? ? ? scanf("%d",min);
? ? ? ? while(min > 0) {
? ? ? ? ? ? ? ? hour = min / MPH;
? ? ? ? ? ? ? ? ms = min % MPH;
? ? ? ? ? ? ? ?printf("%d minutes convert to hour and minute is %d hour(s) %d minute(s).\n", min, hour, ms);
? ? ? ? ? ? ? ? printf("Enter minutes(0 to end):\n"); ? ? ? ? ? ? ? ? ? ? ?scanf("%d", &min);
? ? ? ? }
? ? ? ? return 0;
}
```
## 第二題
### 題目
寫一個程序,要求輸入一個整數,輸出從該整數到大于該整數10的所有整數,并用空格符號(空格,制表等)間隔。
### 分析
可以使用while(第五章沒學for)。
### 答案
```c
/* pe02.c -- print all integer in the range */
#include <stdio.h>
int main(void) {
? ? ? ? int i, d;
? ? ? ? printf("Enter a integer:\n"); ? // ask for an integer
? ? ? ? scanf("%d",&i);
? ? ? ? d = i;
? ? ? ? while(d <= i+10) {
? ? ? ? ? ? ? ? printf("%d ", d);
? ? ? ? ? ? ? ? d++;
? ? ? ? }
? ? ? ? printf("\n");
? ? ? ? return 0;
}
```
## 第三題
### 題目
寫一個程序,讓用戶輸入天數,之后將天數轉換成用周數和天數表示。
### 分析
同第一題
### 答案
```c
/* pe03.c -- converts days to weeks and days */
#include <stdio.h>
#define DTW 7
int main(void) {
? ? ? ? int week, day, ds;
? ? ? ? scanf("%d", &day); ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? week = day / DTW;
? ? ? ? ds = day % DTW;
? ? ? printf("%d days are %d weeks, %d days\n", day, week, ds);
? ? ? ? return 0;
}
```
## 第四題? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
### 題目
寫一個程序,讓用戶輸入一個用厘米表示的身高,轉換成英制單位>
一起輸出,允許小數厘米,英寸。
例: 168.0 cm = 5 feet, 6.4 inches
### 分析
首先我們要知道 一英寸是2.54厘米,一英尺是12英寸。
### 答案
```c
/* pe04.c -- height convertion */
#include <stdio.h>
#define CTE 2.54
int main(void) {
? ? ? ? int feet; ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?float cheight, inches, temp;
? ? ? ? printf("Enter a height in centimeters: ");
? ? ? ? scanf("%f", &cheight);
? ? ? ? while(cheight > 0) { ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? temp = cheight / CTE;
? ? ? ? ? ? ? ? feet = temp / 12;?
? ? ? ? ? ? ? inches = temp - 12*feet;?
? ? ? ? ? ? ? printf("%.1f cm = %d feet, %.1f inches\n", cheight, feet, inches);
? ? ? ? ? ? ? ? printf("Enter a height in centimeters(<=0 to quit): ");
? ? ? ? ? ? ? ? scanf("%f", &cheight);
? ? ? ? }
? ? ? ? printf("bye!");
? ? ? ? return 0;
}
```
## 第五題
### 題目
改造addemup.c
### 分析
說白了,就是要加個scanf。
### 答案
```c
/* pe05.c -- modify the addemup.c */?
#include <stdio.h>
int main(void) ?/* finds sum of first 20 integers */
{?
? ? ? int count, sum;/* declaration statement */
? ? ? ? int n;
? ? ? ? printf("How far do you want to caculate: ");
? ? ? ? scanf("%d", &n);
? ? ? ? count = 0; ? ? ?/* assignment statement */
? ? ? ? sum = 0; ? ? ? ?/* ditto ? ? ? ? ? ? ? ?*/
? ? ? ? while(count++ < n) ? ? /* while ? ? ? ?*/
? ? ? ? ? ? ? ? sum = sum + count; ? ? ?/* statement */
? ? ? ? printf("sum = %d\n", sum); /* function statement */
? ? ? ? return 0; ? ? ? /* return statememt */
}
```
## 第六題
### 題目
改造第五題,改成平方相加。
### 答案
直接上答案了
```c
/* pe06.c -- modify pe05.c */
#include <stdio.h>
int main(void) ?/* finds sum of first 20 integers */
{
? ? ? ? int count, sum; /* declaration statement */
? ? ? ? int n;
? ? ? ? printf("How far do you want to caculate: ");
? ? ? ? scanf("%d", &n);
? ? ? ? count = 0; ? ? ?/* assignment statement */
? ? ? ? sum = 0; ? ? ? ?/* ditto ? ? ? ? ? ? ? ?*/
? ? ? ? while(count++ < n) ? ? /* while ? ? ? ?*/
? ? ? ? ? ? ? ? sum = sum + count * count; /* statement */
? ? ? ? printf("sum = %d\n", sum); /* function statement */
? ? ? ? return 0; ? ? ? /* return statememt */
}}
```
## 第七題
### 題目
寫一個程序,用函數算立方,并輸出。
### 分析
簡單分析可知cube()需要一個double形參并且為void類型。
### 答案
```c
/* pe07.c -- use function to caculate the cube */
#include <stdio.h>
void cube(double);
int main(void) {
? ? ? ? double d;
? ? ? ? printf("Enter a number: ");
? ? ? ? scanf("%lf", &d);
? ? ? ? cube(d);
? ? ? ? return 0;
}
void cube(double d) {
? ? ? ? double res = d * d * d;
? ? ? ? printf("The cube of %f is %f\n", d, res);
}
```
## 第八題
### 題目
寫一個程序來取余,輸入兩個數,第一個數作第二個算子,第二個做第一個算子,之后輸入的都為第一個算子,第二個算子不變,輸入的數小于等于零則退出。
### 答案
這種題目比較直接,以后就不會寫分析了
```c
/* pe08.c -- used to caculate the modulus */
#include <stdio.h>
int main(void) {
? ? ? ? int sec, fir;
? ? ? ? printf("This program computes moduli.\n");
? ? ? ? printf("Enter an integer to serve as the second operand: ");
? ? ? ? scanf("%d", &sec);
? ? ? ? printf("Now enter the first operand: ");
? ? ? ? scanf("%d", &fir);
? ? ? ? while(fir > 0) {
? ? ? ? ? ? ? ? printf("%d %% %d is %d\n", fir, sec, fir%sec);
? ? ? ? ? ? ? ? printf("Enter next number for first operand(<=0 to quit): ");
? ? ? ? ? ? ? ? scanf("%d", &fir);
? ? ? ? }
? ? ? ? printf("Done!\n");
? ? ? ? return 0;
}
```
## 第九題
### 題目
溫度轉換,輸入華氏攝氏度,用函數(自定義)Temperatures(),來輸出攝氏度和開爾文溫度。請用溫度標準命名。
### 分析
Celsius = 5.0 / 9.0\* (Fahrenheit - 32.0)
Kelvin = Celsius + 273.16
### 答案
```c
/* pe09.c -- converts temperature */
#include <stdio.h>
const double U = 5.0;
const double D = 9.0;?
const double M = 32.0;
const double CK = 273.16;?
void Temperatures(double fahrenheit);
int main(void) {
? ? ? ? double fahrenheit;
? ? ? ? printf("Enter the temperature: "); ? ? ? ? ? ? ? ? ? ? ? ? while(scanf("%lf", &fahrenheit) == 1) {
? ? ? ? Temperatures(fahrenheit);
? ? ? ? printf("Enter the temperature(enter nonnumeric to quit): ");
? ? ? ? }
? ? ? ? printf("Bye!\n");
? ? ? ? return 0;
}
void Temperatures(double fahrenheit) {
? ? ? ? double celsius, kelvin;?
? ? ? ? celsius = U/D*(fahrenheit-M);
? ? ? ? kelvin = celsius + CK;
? ? ? ? printf("Temperature in Fahrenheit is %.2f℉, in Celsius is %.2f℃, in Kelvin is %.2fK\n", fahrenheit, celsius, kelvin);
}
```
好了,今天的教程就到這里了,謝謝大家閱讀。