加油鸭


私信TA

用户名:2452311021

访问量:8391

签 名:

等  级
排  名 942
经  验 3442
参赛次数 0
文章发表 15
年  龄 0
在职情况 学生
学  校 武城院
专  业

  自我简介:

还在读书的代码dog

import java.util.Scanner;


public class Main1 {

        public static void main(String[] args) {

                Scanner sc = new Scanner(System.in);

                int n = sc.nextInt();

                int m = 0;

                int i = 0;

                int temp = 0;

                while (n > 0) {

                      m = n % 10;

                      if (m % 2 != 0)

                              i++;

                     n = n / 10;

            }

                 System.out.println(i);

        }

}


 

0.0分

2 人评分

  评论区

  • «
  • »