David Thornley 6 anos atrás
pai
commit
bedb1fb765
4 arquivos alterados com 27 adições e 9 exclusões
  1. BIN
      Main.class
  2. 5
    0
      Main.ctxt
  3. 15
    2
      Main.java
  4. 7
    7
      package.bluej

BIN
Main.class Ver arquivo


+ 5
- 0
Main.ctxt Ver arquivo

@@ -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

+ 15
- 2
Main.java Ver arquivo

@@ -1,9 +1,22 @@
1 1
 /**
2 2
  * Created by iyasuwatts on 10/17/17.
3 3
  */
4
+
5
+import java.util.Scanner;
4 6
 public class Main {
5 7
 
6 8
     public static void main(String[] args){
7
-
8
-    }
9
+        
10
+        Scanner input = new Scanner(System.in);
11
+        System.out.println( "Give Ending Value:");
12
+        
13
+        int num = input.nextInt();
14
+        int result = 0;
15
+        
16
+        for( int i = 1; i <= num; i++){
17
+            result += i;
18
+        }
19
+        
20
+        System.out.println(result);
21
+}
9 22
 }

+ 7
- 7
package.bluej Ver arquivo

@@ -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=713
3
+editor.fx.0.width=800
4
+editor.fx.0.x=240
5
+editor.fx.0.y=23
6 6
 objectbench.height=164
7
-objectbench.width=776
7
+objectbench.width=461
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