C Primer plus 习题5.3

来源:互联网 发布:点云数据处理算法 编辑:程序博客网 时间:2024/05/29 19:04
#include <stdio.h>
#define WEEK 7 
int main()
{
 
int days; 
printf("Please input the days:");
scanf("%d",&days);
while(days>0)
{
 
printf("%d days are %d weeks,%d days.\n",days,days/WEEK,days%WEEK);
printf("Please input the days:");
scanf("%d",&days);

return 0;
}
0 0
原创粉丝点击