zoukankan      html  css  js  c++  java
  • 4 随机

    package demo;
    import java.util.Scanner;
    public class Tex {
    
      public static void main(String[] args) {
    
        Scanner input = new Scanner(System.in);
        System.out.println("请输入一个0-1000之间的整数");
        int a =(int)input.nextDouble();
    
        if(a>999||a<0) {
          System.out.println("输入有误");
    
        }
        else if(a>0 && a<10){
          System.out.println("The sum of the digits is "+ a);
        }
        else if(a>9 && a<100) {
          int b=(a/10) + (a%10);
          System.out.println("The sum of the digits is "+ b);
        }    
        else if(a>99 && a<1000) {
          int c=(a/100)+(a%100)+(a%10%10); 
          System.out.println("The sum of the digits is "+ c);
        }
      }
    
    }

     

  • 相关阅读:
    k8s nod rc service 使用
    Linux $() 与 ${}
    Linux set
    Linux 上传下载 rz 与sz
    Linux !的使用
    K8s创建pod yaml文件详解
    Kubernetes 安装
    Python 生成器
    k8s 使用详解
    微信 网页授权
  • 原文地址:https://www.cnblogs.com/speater/p/7542688.html
Copyright © 2011-2022 走看看