java 添加7或9的倍数的所有数字,最多为600.确保63之类的数字仅在总和中添加一次。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 添加7或9的倍数的所有数字,最多为600.确保63之类的数字仅在总和中添加一次。相关的知识,希望对你有一定的参考价值。

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class Adds_All_Numbers_That_Are_Multiples_Of_Either_7_And_9_Up_To_600_ {
    public static void main(String[]args){
        Scanner abir =new Scanner(System.in);
        int temp=1;
        for (int i = 0; i < 600; i++) {
            if(i%7==0||i%9==0){
                if(i%7==0&&i%9==0){
                    temp=temp-i;
                }
                temp=temp+i;
            }
            
        }
        System.out.println("Result is = "+temp);
    }
}

以上是关于java 添加7或9的倍数的所有数字,最多为600.确保63之类的数字仅在总和中添加一次。的主要内容,如果未能解决你的问题,请参考以下文章

Linq查询以获取最多为N的所有数字(正数和负数),总和为数字K

找到两个数字的公约数的最有效方法,最多为 10^6

从给定范围中删除给定数字集的所有倍数

数字的第二个根最多为小数点后4位[重复]

java常用正则表达式

计算1-200之间不是7倍数的数字的累计和 C语言