本題要求實現乙個函式,對乙個整數進行按位順序輸出。
函式介面定義:
void
printdigits
(int n )
;
函式printdigits應將n的每一位數字從高位到低位順序列印出來,每位數字佔一行。
裁判測試程式樣例:
#include
void
printdigits
(int n )
;int
main()
/* 你的**將被嵌在這裡 */
輸入樣例:
12345
輸出樣例:
123
45
author
張高燕organization
浙大城市學院
code size limit
16 kb
time limit
400 ms
memory limit
64 mb
void
printdigits
(int n )
}
例如:123,123 / 10 -> 12, 12 / 10 -> 1, output 1, 返回上一層 12
output 12 - 10 = 2, 返回上一層 123
123 - 120 = 3
PTA資料結構習題(浙江大學)
感謝疫情期間pta開放免費練習,趁著這個機會補一下資料結構的代 include include include struct stud node struct stud node createlist struct stud node deletelist struct stud node head...
PTA 遞迴實現順序輸出整數
本題要求實現乙個函式,對乙個整數進行按位順序輸出。void printdigits int n 函式printdigits應將n的每一位數字從高位到低位順序列印出來,每位數字佔一行。裁判測試程式樣例 include void printdigits int n int main 你的 將被嵌在這裡 ...
PTA練習題 遞迴實現順序輸出整數
本題要求實現乙個函式,對乙個整數進行按位順序輸出。函式介面定義 void printdigits int n 函式printdigits應將n的每一位數字從高位到低位順序列印出來,每位數字佔一行。裁判測試程式樣例 include void printdigits int n int main 你的 ...