我编写了代码,向我展示了3到1000的所有乘数(例如3,6,9,12,15 ...)

我已经成功显示了数字,但是我想让程序自动将这些数字加起来成为一个总和(例如3 + 6 + 9 + 12 + 15 ...)

我目前仍在解决此问题,非常感谢您的帮助!英语不是我的母语,所以很抱歉拼写错误。

这是我当前的代码!

public static void main(String[] args) {
    int nr3 = 0;
    int end = 1000;

     while ( nr3 < end){
         nr3++;
         nr3++;
         nr3++;

         System.out.println(nr3);
     }
}

最佳答案

您可以创建一个新变量sum并将nr3添加到其中。您可以执行nr3 +=3;而不是反复调用增量

    public static void main(String[] args) {
       int nr3 = 0;
       int end = 1000;
       int sum=0;

       while ( nr3 < end){
          nr3 +=3;
          sum+=nr3;
          System.out.println( nr3);
      }
      System.out.println( sum);
   }

07-28 00:21