方法如下:凳数信
system("pause")
会提示:
press any key to continue // 按任意一个键继续
你一开始运行就要暂停?
================================================
C语言中 如何使一个程序循环使用直到你想退出?
答枣轮:
如果毕陵你想 不断循环, 直到按了任何一个键 就退出:
#include <conio.h>
#include<stdio.h>
.....
void main()
{
int i
while (!_kbhit()) {
// 程序内容放在这里,例如:
for (i=0i<100000i++) if (i %1000 == 0) printf("wait ")
}
-----------------------------------------------------------
如果你想 不断循环, 直到按了S 键 才退出:
int i
char c
Lab1:
for (i=0i<100000i++) if (i %1000 == 0) printf("wait ")
if (!_kbhit()) goto Lab1// 判断是否按了键,没按,就无限循环
c = getchar()// 如果按了,看是什么键
if (c != 'S' ) goto Lab1// 不是 S 键, 则回去循环。
#include<腔塌扒stdio.h>伍昌#include<stdlib.h>
int main()
{
int a=1,b=0,c
loop:printf("退出该程序请输入-1.\n清空屏幕请输入衫轿-2\n")
printf("请输入C的值:")
scanf("%d",&c)
if(c==-1)
{return 0}
if(c==-2)
{
system("cls")
goto loop
}
while(a<=c)
{
b=b+a
a++
}
printf("b=%d\n\n",b)
goto loop
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)