p51,1

来源:互联网 发布:android 网络权限 编辑:程序博客网 时间:2024/05/02 04:59
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x=0;
while (x<=10)
{
      printf("%d*%d=%d\n",x,x,x*x);
 x=x++;
}

return 0;

}

}
0 0
原创粉丝点击