#include <stdio.h>#include <stdlib.h> main(){ int x,y; int lower,upper,step; lower =3; upper =6; step =1; x=lower; while(x<=upper){ y=10*x^x+3*x-2; printf("%d\t%d\n",x,y); x=x+step; system("pause"); } }
添加回答
举报
0/150
提交
取消