C語言實驗 整數字

2021-08-10 16:36:37 字數 621 閱讀 3667

c語言實驗——整數字

time limit: 1000ms memory limit: 65536kb

submit statistic

problem description

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

(1)求出它是幾位數;

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

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

input

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

output

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

example input

example output

3 1 2 3

3 2 1

hint

author

crq

#include

#include

int main()

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

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

for(i = 0; i < flag;i++)//逆序輸出

return

0;}

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行,第一行為正...

C語言實驗 分割整數

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