Nira Parikh il y a 6 ans
Parent
révision
840ab031ee
3 fichiers modifiés avec 14 ajouts et 1 suppressions
  1. BIN
      Main.class
  2. 5
    0
      Main.ctxt
  3. 9
    1
      Main.java

BIN
Main.class Voir le fichier


+ 5
- 0
Main.ctxt Voir le fichier

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

+ 9
- 1
Main.java Voir le fichier

@@ -1,9 +1,17 @@
1 1
 /**
2 2
  * Created by iyasuwatts on 10/17/17.
3 3
  */
4
+import java.util.*;
4 5
 public class Main {
5 6
 
6 7
     public static void main(String[] args){
7
-
8
+        Scanner input = new Scanner(System.in);
9
+        int number = input.nextInt();
10
+        int sum=0;
11
+       
12
+        for (int x=1; x<=number; x++){
13
+         sum += x;
14
+        }
15
+        System.out.println(sum);
8 16
     }
9 17
 }