編程

1.編寫一個程序,把用分鐘表示的時間轉換成用小時和分鐘表示的時 間。使用#define或const建立一個表示60的符號常量或const變量。經過while 循環讓用戶重複輸入值,直到用戶輸入小於或等於0的值才中止循環。

#include <stdio.h>
#define T 60
int main(void)
{
	int n, h, m;
	printf("Please input the time:\n");
	scanf("%d",&n);
	while( n>0 )
		{
		h = n/T;
		m = n%T;
		printf("%dminute: %dhour %dmin\n", n, h, m);
		break;	
		}
	return 0;
}

2.

編寫一個程序,提示用戶輸入一個整數,而後打印從該數到比該數大 10的全部整數(例如,用戶輸入5,則打印5~15的全部整數,包括5和 15)。要求打印的各值之間用一個空格、製表符或換行符分開。函數

#include<stdio.h>
int main()
{
	int x = 0;
	int num;
	printf("Please input a number:\n");
	scanf("%d",&num);
	while(x++ <= 10){
		printf("%d\n",num);
		num++;	
	}
	return 0;
}

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

18 days are 2 weeks, 4 days.ui

經過while循環讓用戶重複輸入天數,當用戶輸入一個非正值時(如0 或-20),循環結束。設計

#include <stdio.h>
#define DAYS_P_WEEK 7	
int main(void)
{
	int days,weeks,left;
	printf("Please enter a number of days: \n");
	scanf("%d", &days);
	while (days > 0)
	{
		weeks = days / DAYS_P_WEEK;
		left = days % DAYS_P_WEEK;
		printf("%u days are %u weeks, %u days \n",days, weeks, left);
	 	printf("Please enter a number of days: \n");
	 	scanf("%u", &days);
	}	
	return 0;
}

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

Enter a height in centimeters: 182code

182.0 cm = 5 feet, 11.7 inches對象

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

168.0 cm = 5 feet, 6.4 inchesit

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

bye變量

#include<stdio.h>
#define INCH_P_CM 0.3937008
#define FEET_P_CM 0.0328084
#define INCH_P_FEET 12
int main(void)
{
	float cm,inch;
	int feet;
	printf("Enter a height in centimeters: \n");
	scanf("%f",&cm);
	while(cm > 0){
		feet = cm * FEET_P_CM;
		inch = (cm * INCH_P_CM) - (feet * INCH_P_FEET);
		printf("%.1f cm=%.0d feet,%.1f inch\n",cm,feet,inch);
		printf(" Enter a height in centimeters: \n");
		scanf("%f",&cm);
	}
	printf("bye\n");
	return 0;
}

5.編寫一個程序,提示用戶輸入一個double類型的數,並打印該數的立 方值。本身設計一個函數計算並打印立方值。main()函數要把用戶輸入的值 傳遞給該函數。

#include <stdio.h>
#include<math.h>	
int main(void)
{
	double num;
	double cube;	
	printf("Please input a number and ");
	printf("I will give you its cube: \n");
	scanf("%lf", &num);
	cube = pow(num,3);
	printf("The cube is : %f: ", cube);	
	return 0;
}

6.編寫一個程序,顯示求模運算的結果。把用戶輸入的第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>
int main(void)
{
	int first,second,result;
	printf("This program computes moduli. \n");
	printf("Enter an integer to serve as the second operand :  ");
	scanf("%d", &second);
	printf("Now enter the first operand :  ");
	scanf("%d", &first);
	while (first > 0)
	{
		result = first % second;
		printf("%d %% %d is %d \n", first, second, result);
		printf("Enter next number for first operand (<= 0 to quit) :  ");
		scanf("%d", &first);
	}
	return 0;
}
相關文章
相關標籤/搜索