C Primer Plus 第六版编程练习第五章答案和记录一些学习历程

1,编写一个程序,把用分钟表示的时间转换成用小时和分钟表示的时间。使用#define或const创建一个表示60的符号常量或const变量。通过while循环让用户重复输入值,直到用户输入小于或等于0的值才停止循环

#include <stdio.h>
#include <string.h>
#include <float.h>
int main(void) 
{
   	
	const int rate = 60;
	int min,hour;
	int mins;
	
	printf("please enter the minute number:\n");
	scanf("%d", &mins);
	while(mins>0){
   
		
		min = mins%rate;
		hour = mins/rate;
		printf("now is %d o'clocks %d minutes!\n", hour,min);
		printf("enter next minutes value to continue: (0 to quit)\n");
		scanf("%d", &mins);
		
	}
	
	printf("bye!");
	return 0; 
 } 

运行结果:
在这里插入图片描述

2,编写一个程序,提示用户输入一个整数,然后打印从该数到比该数大10的所有整数(例如:用户输入5,则打印5-15的所有整数,包括5和15).要求打印的各值之间用一个空格,制表符或换行符分开

#include <stdio.h>
#include <string.h>
#include <float.h>
int main(void) 
{
   	
	int num;
	int count;
	
	printf("please enter the num: \n");
	scanf("%d", &num);
	count = num+10;
	
	while(num<=count){
   
		printf("%d ", num);
		num++;
	}
	
	return 0; 
 } 

运行结果:
在这里插入图片描述

3,编写一个程序,提示用户输入天数,然后将其转换为周数和天数。例如,用户输入18,则转换成2周4天。以下面的格式显示结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值