The answer depends on how you parse the sentence; it is either
12(c+4) = 12c + 48
OR
12c + 4
Chat with our AI personalities
(c+4)/2
5(c+8) or 5c+40
/*mycfiles.wordpress.com To Calculate Sum & Average of 4 no.*/ #include<stdio.h> #include<conio.h> void main() { float a,b,c,d,sum,avg; clrscr(); printf("Enter the 4 nos.\n\n"); scanf("%f%f%f%f",&a,&b,&c,&d); sum=a+b+c+d; avg=(a+b+c+d)/4; printf("\nSum is= %f\nAverage is= %f",sum,avg); getch(); }
"the same as the others added together" For example: a=b+c+d a is equal to the sum of b plus c plus d. 9=2+3+4
If We are looking for A, B and C If the first number is A then we know B = A+2 C = A+4 and 3A = B+C or 3A = (A+2) + (A+4) so 3A = 2A +6 3A - 2A = 6 A = 6 B= 8 C= 10