以文本方式查看主题

-  计算机科学论坛  (http://bbs.xml.org.cn/index.asp)
--  『 C/C++编程思想 』  (http://bbs.xml.org.cn/list.asp?boardid=61)
----  求助为什么我的运行那么快呢,怎么就停不下来呢!!!!!!!  (http://bbs.xml.org.cn/dispbbs.asp?boardid=61&rootid=&id=18648)


--  作者:whgg5
--  发布时间:5/21/2005 9:08:00 PM

--  求助为什么我的运行那么快呢,怎么就停不下来呢!!!!!!!
#include<stdio.h>
void main (void)
{
int date,month;

printf("Enter the Date>>>>>");
scanf("%i",&date);

prntf("Enter the Month>>>>>>");
scanf("%i",&month);
}运行为什么那么快呢


--  作者:aimfly
--  发布时间:7/4/2005 11:25:00 AM

--  
如果tc编译的话
第一个scanf后输入缓冲不清空
第二次会读入回车 而不等待
不知道你是不是这意思
--  作者:binaryluo
--  发布时间:7/13/2005 8:06:00 PM

--  
如果要程序运行完停留:
#include<stdio.h>
#include<conio.h>
void main (void)
{
int date,month;

printf("Enter the Date>>>>>");
scanf("%i",&date);

prntf("Enter the Month>>>>>>");
scanf("%i",&month);

getch();
}


W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
46.875ms