#include
using namespace std;
int main()
{
double a,b,c;
cin>>a>>b>>c;
double max=a;
if (b>max) max=b;//检查if后面的条件表达式有没有括号
if (c>max) max=c;//检查if后面的条件表达式有没有括号
cout<
就是你不把你的程序贴出来,不知道你错哪,我写了个看看是不是你需要的
#include
using namespace std;
int main()
{
int a,b,c;
cout<<"输入三个数"<
cout<<"三个数的最大值为:"<<((a>b?a:b)>c?(a>b?a:b):c)<
}
#include
void main()
{
int a, b, c;
int max;
if (a > b)
max = a;
else
max = b;
if (c > max)
max = c;
pirntf("%d\n",max);
}
这个问题 你自己好好想象
程序很简单,但出错的情况却千差万别,你一没源码,二没说明,谁知道你为什么总是错?