gpt4 book ai didi

java - 在 For 循环中添加特定选择的数字以计算出总乘数 Java

转载 作者:行者123 更新时间:2023-12-02 01:52:35 25 4
gpt4 key购买 nike

public class totalCount {                                       
public static void main(String[] args){
int total = 0;
for (int i=1; i<=100;i++){
if(i%2==0){
System.out.println(i);
} else if(i%4==0){
System.out.println(i);
}
total +=i;
}
System.out.println(total);
}
}

我有点困惑,我尝试创建一个 for 循环函数来专门挑选 2 和 4 到 100 的乘数,然后找到数字的总和。但是,我无法找到数字的总和,因为我似乎无法将 for 循环生成的总数相加。如何找到总金额?

最佳答案

首先,你只需要i % 2 == 0,因为任何能被四整除的东西也能被二整除。其次,您需要将 total += i; 行移至 if 语句中:

for (int i = 1; i <= 100; i++){                                      
if(i % 2 == 0){
System.out.println(i);
total += i;
}
}
System.out.println(total);

关于java - 在 For 循环中添加特定选择的数字以计算出总乘数 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52770069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com