#include<stdio.h>
#include<stdlib.h>
int main(){
int i;
int* p=(int*)malloc(1004);
for(i=0;i<100;i++){
p[i]=i
i;
}
for( i=0;i<100;i++){
printf("%d\n",p[i]);
}
free§;
system(“pause”);
return 0;
}

C语言编写一个输出0-99的平方

相关文章:

  • 2021-10-21
  • 2022-12-23
  • 2021-12-19
  • 2021-05-29
  • 2022-12-23
  • 2021-11-26
  • 2021-05-27
  • 2021-04-05
猜你喜欢
  • 2021-12-10
  • 2022-01-12
  • 2021-07-15
  • 2021-09-01
  • 2021-07-28
相关资源
相似解决方案