Wednesday, December 2, 2015

Uri problem 1005 solve

Problem:

Average 1

Adapted by Neilor Tonin, URI  Brazil
Timelimit: 1
Make a simple program that read two floating numbers corresponding to two tests for a student. After, calculate the average between them, considering that the first number has 3.5 weight and the second one have 7.5 weight. Each number can be from zero to ten, always with one digit after the decimal point. Don’t forget to print end line after the result otherwise you will get “Presentation Error”. Don’t forget the space before and after the equal sign.

Input

The input file will contain 2 floating-point numbers with one digit after the decimal point.

Output

Print MEDIA(average in portuguese) according to the following example, with 5 digits after the decimal point and a blank space before and after the equal signal.
Sample InputsSample Outputs
5.0
7.1
MEDIA = 6.43182
0.0
7.1
MEDIA = 4.84091
10.0
10.0
MEDIA = 10.00000

Solution:

#include <stdio.h>
  
int main() {
  
 float A , B , MEDIA ;
    scanf("%f %f",&A , &B);
    MEDIA= ((A*3.5)+(B*7.5))/(3.5+7.5);
    printf("MEDIA = %.5f\n",MEDIA);
  
    return 0;
}

No comments:

Post a Comment