C語言訓練 整數字 1191

2021-08-31 00:01:04 字數 499 閱讀 9475

problem description

輸入乙個不多於5位的正整數,要求:

(1)求出它是幾位數;

(2)分別輸出每一位數字;

(3)按逆序輸出各位數字。

input

輸入乙個不多於5位的正整數。

output

輸出資料有3行,第一行為正整數字數,第二行為各位數字,第三行為逆序的各位數字。

sample input

123sample output

31 2 3

3 2 1

#includeint main()

printf("%d\n", flag);

for(i=flag-1;i>=0;i--) //正序輸出

for(i=0;i借鑑了大佬的方法和思路

位址如下啦

C語言實驗 整數字

c語言實驗 整數字 time limit 1000ms memory limit 65536kb submit statistic problem description 輸入乙個不多於5位的正整數,要求 1 求出它是幾位數 2 分別輸出每一位數字 3 按逆序輸出各位數字。input 輸入乙個不多於...

C語言實驗 整數字

problem description 輸入乙個不多於5位的正整數,要求 1 求出它是幾位數 2 分別輸出每一位數字 3 按逆序輸出各位數字。input 輸入乙個不多於5位的正整數。output 輸出資料有3行,第一行為正整數字數,第二行為各位數字,第三行為逆序的各位數字。example input...

C語言實驗 整數字 sdut oj

time limit 1000ms memory limit 65536kb problem description 輸入乙個不多於5位的正整數,要求 1 求出它是幾位數 2 分別輸出每一位數字 3 按逆序輸出各位數字。input 輸入乙個不多於5位的正整數。output 輸出資料有3行,第一行為正...