URI Online Judge
Solution 1005 - Brain Muscles URI 1005
URI Online Judge Solution 1005 ☺ Average 1☺ URI
Online Judge Solution 1005
Before seeing the solution make sure that you
tried enough. Don’t paste the whole code, just find out the logic. If you stuck
in trouble, just inform me on comment.
![]() |
| Add caption |
URI 1005 Average 1
URI Online Judge | 1005
Average 1
Read two floating points'
values of double precision A and B, corresponding to two student's grades.
After this, calculate the student's average, considering that grade A has
weight 3.5 and B has weight 7.5. Each grade can be from zero to ten, always
with one digit after the decimal point. Don’t forget to print the end of line
after the result, otherwise you will receive “Presentation
Error”. Don’t forget the space before and after the
equal sign.
Input
The input file contains 2
floating points' values with one digit after the decimal point.
Output
Print the message
"MEDIA"(average in Portuguese) and the student's average according
to the following example, with 5 digits after the decimal point and with a
blank space before and after the equal signal.
|
|
Samples
Input
|
Samples
Output
|
5.0
7.1 |
MEDIA = 6.43182
|
0.0
7.1 |
MEDIA = 4.84091
|
10.0
10.0 |
MEDIA = 10.00000
|
URI
Solution 1005 Simple Average 1 in C:
|
#include <stdio.h>
int main()
{
double A,B,avg;
scanf("%lf
%lf",&A,&B);
avg=((A)*(3.5)+(B)*(7.5))/(3.5+7.5);
printf("MEDIA =
%.5lf\n",avg);
return 0;
}

Popular
Tags
Videos
0 comments:
Post a Comment