C語言實驗 整數字

2021-08-13 02:05:45 字數 684 閱讀 6961

problem description

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

(1)求出它是幾位數;

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

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

input

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

output

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

example input

123
example output

3

1 2 3

3 2 1

**:

#include 

#include

int main()

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

for(j = i; j > 0; j--)

else

}printf("\n");

for(j = 0; j < i; j++)

else

}printf("\n");

return

0;}

C語言實驗 整數字

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

C語言實驗 整數字 sdut oj

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

C語言實驗 分割整數

c語言實驗 分割整數 time limit 1000ms memory limit 65536kb submit statistic problem description 從鍵盤輸入乙個長整數 不超過10位 從高位開始逐位分割並輸出。input 正整數n,不含前導零。output 分割的整數序列,...