#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; }
編寫一個程序,提示用戶輸入一個整數,而後打印從該數到比該數大 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; }
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; }
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; }
#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; }
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; }