變數是否>0?是=>輸出=>換行=>將變數/10
否=>結束
#include <iostream>using namespace std;int main(){ int a; cin>>a; while(a){ cout<<a<<endl; a/=10;}}