编程学习网为您整理以下代码实例,主要实现:要求用户输入天数,然后将该值转换为周和天,希望可以帮到各位朋友。
例如,它会将18天转换为2周,4天。
以下列格式显示结果:
18天是2周,4天。
使用while
循环允许用户重复输入日期值。
当用户输入非正值(例如0
或负值)时终止循环。
#include <stdio.h>
int main(voID) {
const int daysperweek = 7;
int days, weeks, day_rem;
printf("Enter the number of days: ");
scanf("%d", &days);
while (days > 0)
{
weeks = days / daysperweek;
day_rem = days % daysperweek;
printf("%d days are %d weeks and %d days.\n", days, weeks, day_rem);
printf("Enter the number of days (0 or less to end): ");
scanf("%d", &days);
}
printf("Done!\n");
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!