沒有錯誤啊,有輸入和輸出啊!
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int x,y,z,temp;
scanf("%d%d%d",&x,&y,&z);
if (x<y)
{
temp=y;
}
else
temp=x;
if (temp<z)
{
temp=z;
}
printf("%d\n",temp);
return 0;
}
以後提問最好貼代碼,別用圖,因為別人要重新打代碼,所以很少人回答你的。