Rich (BB code):
Rich (BB code):
#include <stdlib.h>
#include <math.h>
int main()
{
int x,y,w,z,f1,f2;
printf("enter four numbers");
scanf("%d%d%d%d",x,y,w,z);
f1=x-y-w-z;
f2=x-y-(w+z);
printf("numbers f1 is %d and f2 is %d",f1,f2);
return 0;
}
Attachments
-
271 bytes Views: 18
Last edited: