我用vc++6.0写c语言。程序在vc++6.0内运行很正常,但直接打开生成的exe就只闪一下就没反应了
代码如下:#include<stdio.h>voidmain(){printf("holle.\n")}...
代码如下:
#include <stdio.h>
void main()
{
printf ("holle.\n")
} 展开
#include <stdio.h>
void main()
{
printf ("holle.\n")
} 展开
展开全部
#include<conio.h>
#include <stdio.h>
int main()
{
printf ("holle.\n");
getch();
}
不是没运行,是运行后关闭了
#include <stdio.h>
int main()
{
printf ("holle.\n");
getch();
}
不是没运行,是运行后关闭了
追问
#include和getch();是什么意思
如果是:
#include
void main()
{
int max(int x,int y);
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
}
int max(int x,int y)
{
int z;
if (x>y) z=x;
else z=y;
return (z);
}
哪怎么改
追答
#include 是 getch()函数的头文件,getch()是准备接受一个输入
c=max(a,b);
printf("max=%d\n",c);
getch();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那是正常的。一般可以在main函数结尾添加system(“pause”)或者getchar()。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
程序运行完了当然要关掉了,加个函数。
#include <stdio.h>
void main()
{
printf ("holle.\n")
getchar();
}
#include <stdio.h>
void main()
{
printf ("holle.\n")
getchar();
}
追问
你这个都不行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询