You are viewing a single comment's thread. Return to all comments →
int main() { int a,b; float x,y; scanf("%d %d",&a, &b); scanf("%f%f",&x, &y); printf("%d %d\n", a + b, a - b); printf("%.1f %.1f\n", x + y, x - y);
return 0;
}
Seems like cookies are disabled on this browser, please enable them to open this website
Sum and Difference of Two Numbers
You are viewing a single comment's thread. Return to all comments →
include
include
include
include
int main() { int a,b; float x,y; scanf("%d %d",&a, &b); scanf("%f%f",&x, &y); printf("%d %d\n", a + b, a - b); printf("%.1f %.1f\n", x + y, x - y);
}