for与while替代问题

2024-11-26 11:31:02
推荐回答(2个)
回答1:

while(i--,i>=0)
printf("%d",p[i]);

回答2:

i--;
while(i>=0)
{
    printf("%d",p[i]);
    i--;
}