Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <math.h>
- int main()
- {
- int j,i;
- float oper,x;
- printf("X Y f(x,y)\n");
- for (i = 1; i <= 10; i++)
- {
- x = pow(i,2);
- for (j = 1; j <= 5; j++)
- {
- oper = (pow(x,2) + 3*x + pow(j,2))/(x*j - 5*j - 3*x + 15);
- printf("%.f %d %f\n",pow(i,2),j,oper);
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment