为什么这个程序运行错误,而且一运行完后就直接退出了,连接过也不显示?
下面这个程序运行错误,输入什么数据结果都是a,而且如果用c_free生成会显示完结果按一下自动退出,但是visual studio2010生成的时候直接推书什么结果也不显示?求大神帮忙啊,弄了很久了// duofenzhi if yuju.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
。
//this is a another project//
#include<stdio.h>
int main()
{
int a;
printf("please input the grade of the sthdents;");
scanf("%d",&a);
if(a>=80)
if(a>=90)
printf("a");
else
printf("b");
else
if(a>=70)
printf("c");
else if(a>=60)
printf("d");
else
printf("e");
getchar();
return 0;
}