#17997: 不好意思,有人能幫我看看出了什麼問題嗎,好象是有格式方面的錯誤,感謝


jasonhsutsean@gmail.com (Jason Hsu)

學校 : 不指定學校
編號 : 90940
來源 : [140.122.136.118]
最後登入時間 :
2020-09-28 12:10:15
a006. 一元二次方程式 | From: [111.240.226.9] | 發表日期 : 2019-06-08 12:42

#include <stdio.h>
#include<math.h>

int main() {
int a,b,c;
int temp;
while(scanf("%d%d%d",&a,&b,&c)!=EOF){
temp=b*b-4*a*c;
if(temp>0){
printf("Two different roots x1=%d,x2=%d\n",(-b+sqrt(temp))/(2*a),(-b-sqrt(temp))/(2*a));
}
elseif(temp==0){
printf("Two same roots x=%d\n",(-b/(2*a));
}
else{
printf("No real root\n");
}

}
}
return0;

}
 
#18055: Re:不好意思,有人能幫我看看出了什麼問題嗎,好象是有格式方面的錯誤,感謝


x0180368905 (香魚)

學校 : 臺北市私立延平高級中學
編號 : 77777
來源 : [150.116.43.83]
最後登入時間 :
2021-10-14 11:25:59
a006. 一元二次方程式 | From: [39.8.197.174] | 發表日期 : 2019-06-14 18:38

#include
#include

int main() {
int a,b,c;
int temp;
while(scanf("%d%d%d",&a,&b,&c)!=EOF){
temp=b*b-4*a*c;
if(temp>0){
printf("Two different roots x1=%d,x2=%d\n",(-b+sqrt(temp))/(2*a),(-b-sqrt(temp))/(2*a));
}
elseif(temp==0){
printf("Two same roots x=%d\n",(-b/(2*a));
}
else{
printf("No real root\n");
}

}
}
return0;

}

輸入要有空格啊


 
ZeroJudge Forum