You are viewing a single comment's thread. Return to all comments →
#include<stdio.h> int main() { int b; float c,a; scanf("%f%d%f",&a,&b,&c); float x=(a/100)*b; float y = (c/100)*a; float z = a+x+y; printf("%.f",z); }
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →