#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");
}
DoDream
相关分类