描述

问题:一年约有 3.156×107 s,要求输入您的年龄,显示该年龄合多少秒。

题解

import java.util.Scanner;

public class Main{
    
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        double d = 3.156; 
        int s = 10;
        for(int i = 0;i<6;i++){  // 此循环相当于10的7次方
            s *= 10;
        }
        int age = scanner.nextInt();
        long se = (long)(age * (d*s));  // 年龄 * (一年秒数 )
        System.out.println(se);
    }
}