import java.util.Scanner; public class Main{ public static void main(String[]args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int a[]=new int[5],i=0,k=0; while(n>0) { a[i]=n%10; k++; n/=10; i++; } System.out.println(k); for(int j=k-1;j>=0;j--) { System.out.print(a[j]+" "); } System.out.println(); for(int t=0;t<k;t++) { System.out.print(a[t]); } } }
0.0分
0 人评分
【绝对值排序】 (C++代码)浏览:720 |
回文串 (C语言代码)浏览:3096 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
【简单计算】 (C语言代码)浏览:642 |
WU-格式化数据输出 (C语言代码)浏览:1818 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1483 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
1197求助浏览:667 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:465 |