C語言代碼註釋

#include<stdio.h> int main() { int x=8; for(;x>0;x--) { if (x%3) //若是x%3==0則不執行 { printf("%d",x--); //最後執行x-- continue; } printf("%d",--x); }
相關文章
相關標籤/搜索