回顧大一·C語言編程4.1(2)

逆序輸出26個大寫英文字母。spa #include <stdio.h> main()  //1 { char x;  //2     x='Z';  //3     while(x>='A')  //4 {   printf("%c",x);  //5     x--;  //6     }   printf("\n"); } xml
相關文章
相關標籤/搜索