Browse Source

Sum of numbers 1 to n

Brandon Defrancis 6 years ago
parent
commit
f065f67aae
2 changed files with 19 additions and 6 deletions
  1. 13
    0
      Main.java
  2. 6
    6
      package.bluej

+ 13
- 0
Main.java View File

1
 /**
1
 /**
2
  * Created by iyasuwatts on 10/17/17.
2
  * Created by iyasuwatts on 10/17/17.
3
  */
3
  */
4
+import java.util.*;
4
 public class Main {
5
 public class Main {
5
 
6
 
6
     public static void main(String[] args){
7
     public static void main(String[] args){
8
+        
9
+        int x, y, sum = 1;
10
+        Scanner sc = new Scanner(System.in);
11
+        System.out.println("Input a number below!");
12
+        x = sc.nextInt();
13
+        
14
+        for (y = 1; y <= x; y++){
15
+            sum += y;
16
+        }        
17
+
18
+        System.out.println("The sum is "+ sum);
19
+                
7
 
20
 
8
     }
21
     }
9
 }
22
 }

+ 6
- 6
package.bluej View File

1
 #BlueJ package file
1
 #BlueJ package file
2
-editor.fx.0.height=0
3
-editor.fx.0.width=0
4
-editor.fx.0.x=0
5
-editor.fx.0.y=0
2
+editor.fx.0.height=722
3
+editor.fx.0.width=800
4
+editor.fx.0.x=379
5
+editor.fx.0.y=52
6
 objectbench.height=164
6
 objectbench.height=164
7
 objectbench.width=776
7
 objectbench.width=776
8
 package.divider.horizontal=0.6
8
 package.divider.horizontal=0.6
9
 package.divider.vertical=0.6845018450184502
9
 package.divider.vertical=0.6845018450184502
10
 package.editor.height=364
10
 package.editor.height=364
11
 package.editor.width=674
11
 package.editor.width=674
12
-package.editor.x=-816
13
-package.editor.y=445
12
+package.editor.x=482
13
+package.editor.y=121
14
 package.frame.height=600
14
 package.frame.height=600
15
 package.frame.width=800
15
 package.frame.width=800
16
 package.numDependencies=0
16
 package.numDependencies=0