C语言编程错误 kbhit 怎么用啊 30

程序要求:计算x^2前n项的和(n由用户指定),并实时输出第1,2,3……的计算结果。要求在计算过程中按下Esc时停止计算,并回到初始状态。计算结束后,回到初始状态。下面... 程序要求:计算x^2 前n项的和(n由用户指定),并实时输出第1,2,3……的计算结果。
要求在计算过程中按下Esc时停止计算,并回到初始状态。
计算结束后,回到初始状态。
下面是我写得,
怎么都搞不定这个kbhit 啊
帮忙debug下
谢谢

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <windows.h>
#include <conio.h>

int main()
{
unsigned int term; //项数
unsigned int number,sum;
char ch;

start:
number=0;
sum=0;
printf("Hello!Please enter the number of terms:\n");
scanf("%d",&term);
printf("The general term of the progression is x^2\n");
printf("Press any key to stop the calculation.\n");

while (!kbhit())
{

while (number++ < term)
{
sum=sum+number*number;

printf("For the first %u term(s), the sum is %u.\n",number,sum);
printf("The final answer is %u.\n\n",sum);
goto start;

if(kbhit())
{
ch = getch();
if( 27 == ch )
break;
}

}

}
goto start;
return 0;
}
展开
 我来答
昭聊IT
2013-07-15 · TA获得超过366个赞
知道小有建树答主
回答量:293
采纳率:100%
帮助的人:160万
展开全部
函数名:kbhit()(VC++6.0下为_kbhit())
功 能及返回值: 检查当前是否有键盘输入,若有则返回一个非0值,否则返回0
用 法:int kbhit(void);
包含头文件: include <conio.h>
#include<conio.h>
int main(void)
{
cprintf("Press any key to continue:");
while (!kbhit()) /* do nothing */ ;
cprintf("\r\nA key was pressed...\r\n");
return 0;
}
下面的代码,如果没有键盘输入程序一直输出Hello World,直到用户按Esc结束
#include <conio.h>
#include <stdlib.h>
int main( void )
{
char ch;
while( !kbhit() )
{
cprintf("Hello World\n");
if( kbhit() )
{
ch = getch();
if( 27 == ch )
break;
}
}
cprintf("End!\n");
system("pause");
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式