方法如下:凳数信
system("pause")
会提示:
press any key to continue // 按任意一个键继续
你一开始运行就要暂停?
================================================
答枣轮:
如果毕陵你想 不断循环, 直到按了任何一个键 就退出:
#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 键, 则回去循环。
你好!!
可以采用goto的语句完成,看效果:
完整的代码:
#include <stdio.h>int main()
{
租岩蚂 float x,y
char a='y'
jixu:printf("请输入:")
scanf("%f",&x)
getchar()
if(x>=1)
if(x>=1&&x<10)
y=2*x-1
枣桥 else
y=3*x-11
else
y=x
printf("%f\n",y)
printf("y 继续,弊埋其它键退出")
if(getchar()=='y')
goto jixu
return 0
}
char awhile(a!='E'茄孙)
{
printf("输入大写字母E退出!\n")
scanf("%c",&a)
}
把你程序放在这样的循环体内,就散判可以实现多次运行,直到输入字符E结束冲纳改;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)