标题:[求助]帮忙看看这个程序有什么问题
取消只看楼主
电脑小书虫
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2007-1-1
 问题点数:0 回复次数:2 
[求助]帮忙看看这个程序有什么问题

输入某天的时,分,秒,输出下一时刻的时,分,秒。
#include "stdio.h"
main()
{int h,m,s;
printf("Enter the time:\n");
scanf("%d,%d,%d",h,m,s);

if(s<59) s=s+1;
printf("Now the time is:%d,%d,%d\n",h,m,s);
else if(s=59)
{
if(m<59) {m=m+1;s=0;}
printf("Now the time is:%d,%d,%d\n",h,m,s);
else if(m=59&&h<23) {h=h+1;m=0;s=0;}
printf("Now the time is:%d,%d,%d\n",h,m,s);
else if(m=59&&h=23) {h=0;m=0;s=0;}
printf("Now the time is:%d,%d,%d\n",h,m,s);

}


}

为什么这段代码不能运行,麻烦高手帮忙解决下。


搜索更多相关主题的帖子: include Enter 
2007-01-15 17:24
电脑小书虫
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2007-1-1
得分:0 
刚才把书看了下,弄明白了,谢谢

有梦最美,希望相随
2007-01-15 18:34
电脑小书虫
Rank: 1
等 级:新手上路
帖 子:39
专家分:0
注 册:2007-1-1
得分:0 
谢谢楼上的朋友

有梦最美,希望相随
2007-01-15 18:37



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-116133-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.133926 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved