求大神帮忙解决这道c语言的题

求大神帮忙解决这道c语言的题拜托啦,谢谢
2024-10-31 23:43:53
推荐回答(1个)
回答1:

#include
#define M 10
void main()
{
int a[M]={0},i=0,j,m;
printf("\nPlease enter an integer number between 4 and 10:");
scanf("%d",&m);
for(j=0;j a[j]=(j+1)*(j+1);
printf("\nThe output :\n");
for(i=m-1;i>=0;i--)
printf("%4d",*(a+i));
}