#include
#include
main()
{ int *p,count;
scanf("%d",&count);
p=(int*)malloc(count*sizeof(int));
for(int i=0;i
p[i]=i;
for(int j=0;j
printf("%d",p[j]);
}

 

相关文章:

  • 2021-11-09
  • 2022-03-01
  • 2021-06-12
  • 2022-01-09
  • 2021-07-23
  • 2022-01-16
  • 2021-10-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
  • 2022-12-23
相关资源
相似解决方案