首页 > 编程 > Java > 正文

java实现——2007平方和与立方和

2019-11-06 06:09:50
字体:
来源:转载
供稿:网友
import java.text.DecimalFormat;import java.util.Scanner;public class Main{        public static void main(String args[]){        Scanner scan = new Scanner(System.in);        DecimalFormat df = new DecimalFormat("0");         while(scan.hasNext()){            String str[] = scan.nextLine().split(" ");            int n = Integer.parseInt(str[0]);            int m = Integer.parseInt(str[1]);            int t = n;            if(n>m)            {                n = m;                m = t;            }            double sum_o = 0;            double sum_j = 0;            for(int i=n; i<=m; i++)            {                if(i%2 == 0)                    sum_o += Math.pow(i, 2);                else                    sum_j += Math.pow(i, 3);            }            System.out.PRintln(df.format(sum_o)+" "+df.format(sum_j));        }    }}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表