Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how I get the 7.375 answer

0 votes
asked Feb 8, 2018 by anonymous
int a,b,c,d,e;
 a=3;
 b=4;
 c=(a%b)*6;
 d=c/b;
 e=(a+b+c+d)/4;
 cout<<e<<endl;

1 Answer

0 votes
answered Feb 11, 2018 by anonymous
which compiler you will use.
commented Feb 11, 2018 by anonymous
if you are using int then it will be only show that 7
and float then 7.some thing
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...