循环与数组问题

xiaoxiao2021-02-28  120

void test37() {         int x=10;int y =10,i;         for(i=0;x>8;y=i++)         {                 printf("%d,%d\n",x--,y);         } }

void test38() {         int x=10;int y =10,i;         for(i=0;x>8;)         {                 y=i++;                 printf("%d,%d\n",x--,y);         }

}

转载请注明原文地址: https://www.6miu.com/read-41898.html

最新回复(0)