Advertisement
veronikaaa86

09. Sum of Odd Numbers

May 11th, 2023
900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. package basicSyntax;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P09SumOfOddNumbers {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.  
  9.         int n = Integer.parseInt(scanner.nextLine());
  10.  
  11.         int sum = 0;
  12.         for (int i = 1; i <= n * 2; i++) {
  13.             if (i % 2 != 0) {
  14.                 System.out.println(i);
  15.                 sum += i;
  16.             }
  17.         }
  18.  
  19.         System.out.println("Sum: " + sum);
  20.     }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement