12345678910111213141516171819202122232425 |
- ;import java.util.*;
- /**
- * Created by iyasuwatts on 10/17/17.
- */
- public class Main {
-
- public static void main(String[] args){
-
- Scanner in = new Scanner(System.in);
- System.out.print("Enter a Number");
-
- int n = in.nextInt(); // user input #
- int s = 0; // # to store sum until n is reached
- // System.out.println(s); test to make sure n is getting captured
-
- for (int i = 1; i <= n; i++) {
- s = i + s;
- }
-
- System.out.println(s);
-
- };
-
- };
|