闵昊岚


私信TA

用户名:dotcpp0695436

访问量:986

签 名:

摆烂持续中........................................()

等  级
排  名 1849
经  验 2604
参赛次数 13
文章发表 11
年  龄 18
在职情况 学生
学  校 中山职业技术学院
专  业 23大数据班

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:
import java.util.Scanner;
public class Main {
   public static void main (String[] args) {
       Scanner sr = new Scanner(System.in);
     int result = sr.nextInt();
     int a = result;
     if (a/10==0){
         System.out.println(1);
     }
       else{
           for (int g = 2; a >= 0; g++) {
               a = a / 10;
               if (a < 10) {
                   System.out.println(g);
                   break;
               }
           }
       }
       int e = result;
    if(e/10000!=0) System.out.print(e/10000+" ");
    if(e/1000!=0) System.out.print((e%10000)/1000+" ");
    if(e/100!=0) System.out.print((e%1000)/100+" ");
    if(e/10!=0) System.out.print((e% 100)/10+" ");
    if(e/10!=0) System.out.println((e% 10)/1);else System.out.println(e);

     int c =0;int b = result ;
     while(b!=0) {
         int d = b%10;
        c = c*10+d ;
         b/=10;
     }
     System.out.println(c);

   }
}

 

0.0分

1 人评分

  评论区

  • «
  • »