Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- float a, b;
- scanf("%f %f", &a, &b);
- float f = ((3.3 * a * a) + (2.01 * a * b * b * b)) / (2*a);
- printf("%.3f\n", f);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement