c primer plus 编程练习答案第四章
Posted 1998wdq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c primer plus 编程练习答案第四章相关的知识,希望对你有一定的参考价值。
最近在研读c primer plus,小白一枚,把自己做的答案写出来,望指正。
编程环境 visual studio 2010.第五章。
1 /* Programming Exercise 5-1 */ 2 #include<stdio.h> 3 #define N 60 4 int main(void) 5 {int a,b,c; 6 while(1) 7 {printf("please enter minute "); 8 scanf("%d",&a); 9 if(a==0||a<0) 10 break; 11 b=a/N; 12 c=a%N; 13 printf("%d hour %d minute ",b,c); 14 } 15 return 0; 16 }
以上是关于c primer plus 编程练习答案第四章的主要内容,如果未能解决你的问题,请参考以下文章