int main()
{
int t;
cin>>t;
int a,b,c;
cin>>a>>b>>c;
double tmp=a+b;
tmp=tmp/2;
cout<<tmp<<"!";
}
input is : 1 232444 123233 232434 why it is giving wrong answer:177838; why it is rounding off the value .
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | jiangly | 3631 |
| 4 | Kevin114514 | 3574 |
| 5 | maroonrk | 3521 |
| 6 | strapple | 3515 |
| 7 | Radewoosh | 3461 |
| 8 | tourist | 3428 |
| 9 | turmax | 3378 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 140 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
why double is giving wrong output
int main()
{
int t;
cin>>t;
int a,b,c;
cin>>a>>b>>c;
double tmp=a+b;
tmp=tmp/2;
cout<<tmp<<"!";
}
input is : 1 232444 123233 232434 why it is giving wrong answer:177838; why it is rounding off the value .
| Rev. | Lang. | By | When | Δ | Comment | |
|---|---|---|---|---|---|---|
| en2 |
|
saurabhkumarfx | 2020-05-28 21:56:34 | 22 | ||
| en1 |
|
saurabhkumarfx | 2020-05-28 21:55:35 | 290 | Initial revision (published) |
| Name |
|---|


