C++程序不显示就自动退出

编好以后,编译器没有提示出现错误,但是运行没有反应,编译器就显示程序已退出。用的是vs2005,以下是代码#include<stdio.h>#include<stdafx... 编好以后,编译器没有提示出现错误,但是运行没有反应,编译器就显示程序已退出。
用的是vs2005,以下是代码
#include <stdio.h>
#include <stdafx.h>
#include <iostream>
#include <conio.h>
using namespace std;

int WINAPI WinMain
(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow
)
{
double height = 0.;
double weight = 0.;

cout<<"Enter your weight(kg):\n";
cin>>weight;
cout<<"Enter your height(m):\n";
cin>>height;

cout<<"the BMI is \n";
cout<<weight/(height*height);

if(weight/(height*height)<18.5)
cout<<"You are too thin\n";
if(weight/(height*height)>=18.5&&weight/(height*height)<=23.9)
cout<<"Your weight is healthy\n";
if(weight/(height*height)>23.9)
cout<<"You are too fat\n";

system("pause");
return 0;

}
展开
 我来答
chji5471
2014-07-04 · TA获得超过232个赞
知道小有建树答主
回答量:135
采纳率:0%
帮助的人:164万
展开全部
请选择WIN32控制台程序(win32 console application)重新生成一个项目
更多追问追答
追问
可以不用控制台程序吗?
追答
那你到底要做成什么样的 cin和cout默认是使用控制台输入输出的
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式