程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> javaeye-.求100以內不能被3整除得數求和,如果和超過2000,跳出,打印跳出時得該數字。

javaeye-.求100以內不能被3整除得數求和,如果和超過2000,跳出,打印跳出時得該數字。

編輯:編程綜合問答
.求100以內不能被3整除得數求和,如果和超過2000,跳出,打印跳出時得該數字。

.求100以內不能被3整除得數求和,如果和超過2000,跳出,打印跳出時得該數字。用java編寫。

最佳回答:


 /* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        int sum = 0;
        for (int i = 1; i < 100; i++)
        {
            if (i % 3 != 0) sum += i;
            if (sum > 2000) break;
        }
        System.out.println(sum);
    }
}

運行結果 2028

在線運行通過
http://ideone.com/X4puh8

請采納,謝謝

dbing129129
xiejintaoYY
xiejintaoYY
devmiao
xiejintaoYY
xiejintaoYY
xiejintaoYY
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved