C語言實驗 分割整數

2021-08-11 18:04:41 字數 502 閱讀 9777

c語言實驗——分割整數

time limit: 1000ms memory limit: 65536kb

submit statistic

problem description

從鍵盤輸入乙個長整數(不超過10位),從高位開始逐位分割並輸出。

input

正整數n,不含前導零。

output

分割的整數序列,各整數之間用空格格開。

注意,最後乙個數字後面沒有空格!

example input

example output

6 5 4 3 2 1

hint

author

#include 

#include

int main()

for(j = i-1;j >= 0;j--)//分離的時候,個位數存放在前面,故逆序輸出

return

0;}

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語言實驗 保留整數

c語言實驗 保留整數 time limit 1000 ms memory limit 65536 kib problem description 輸入乙個字串str1,把其中的連續非數字的字元子串換成乙個 存入字元陣列str2 中,所有數字字元也必須依次存入 str2 中。輸出str2。input ...