1079 Weighted Averages

SemiColon
By -
0
URI Online Judge | 1079

Weighted Averages

Read an integer N, which represents the number of following test cases. Each test case consists of three floating-point numbers, each one with one digit after the decimal point. Print the weighted average for each of these sets of three numbers, considering that the first number has weight 2, the second number has weight 3 and the third number has weight 5.

Input

The input file contains an integer number N in the first line. Each following line is a test case with three float-point numbers, each one with one digit after the decimal point.

Output

For each test case, print the weighted average according with below example.
Input SampleOutput Sample
3
6.5 4.3 6.2
5.1 4.2 8.1
8.0 9.0 10.0
5.7
6.3
9.3



Solution:
#include<stdio.h>
int main()
{
    int n;
 double a,b,c,avg;

 scanf("%d", &n);

 for (int i = 0; i < n; ++i)
 {
  scanf("%lf %lf %lf", &a,&b,&c);

  avg = ((a/10) * 2) + ((b/10) * 3) + ((c/10) * 5);

  printf("%.1lf\n", avg);
 }
    return 0;
}


Tags:

Post a Comment

0Comments

Post a Comment (0)