Nuridalia Hermandez před 6 roky
rodič
revize
1108f529b0
4 změnil soubory, kde provedl 29 přidání a 8 odebrání
  1. binární
      Main.class
  2. 5
    0
      Main.ctxt
  3. 18
    2
      Main.java
  4. 6
    6
      package.bluej

binární
Main.class Zobrazit soubor


+ 5
- 0
Main.ctxt Zobrazit soubor

@@ -0,0 +1,5 @@
1
+#BlueJ class context
2
+comment0.target=Main
3
+comment1.params=args
4
+comment1.target=void\ main(java.lang.String[])
5
+numComments=2

+ 18
- 2
Main.java Zobrazit soubor

@@ -1,9 +1,25 @@
1 1
 /**
2 2
  * Created by iyasuwatts on 10/17/17.
3
- */
3
+ */import java.util.Scanner;
4 4
 public class Main {
5 5
 
6 6
     public static void main(String[] args){
7
-
7
+        Scanner number = new Scanner(System.in);
8
+        System.out.println("Please enter a Number:");
9
+        //user input
10
+        int n = number.nextInt();
11
+        //
12
+        int sum= 0;
13
+        
14
+        // loop to add 
15
+        for(int i=0; i<=n; i++){
16
+        sum=sum + i;}
17
+        System.out.println("Sum of all numbers is" +" "+ sum);
18
+        
19
+        
20
+        
21
+        
22
+        
23
+        
8 24
     }
9 25
 }

+ 6
- 6
package.bluej Zobrazit soubor

@@ -1,16 +1,16 @@
1 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=717
3
+editor.fx.0.width=800
4
+editor.fx.0.x=411
5
+editor.fx.0.y=23
6 6
 objectbench.height=164
7 7
 objectbench.width=776
8 8
 package.divider.horizontal=0.6
9 9
 package.divider.vertical=0.6845018450184502
10 10
 package.editor.height=364
11 11
 package.editor.width=674
12
-package.editor.x=-816
13
-package.editor.y=445
12
+package.editor.x=100
13
+package.editor.y=100
14 14
 package.frame.height=600
15 15
 package.frame.width=800
16 16
 package.numDependencies=0