이 기사에서는 Java에서 자연수의 합을 계산하는 방법을 이해합니다. 1에서 무한대까지 가능한 모든 양수를 자연수라고 합니다.
아래는 동일한 데모입니다 -
입력
입력이 -
라고 가정합니다.50 and 100
출력
원하는 출력은 -
Sum of natural numbers from 50 to 100 is 3825
알고리즘
Step1- Start Step 2- Declare three integers my_lower_limit , my_upper_limit, sum. Step 3- Prompt the user to enter two integer value/ define the integers Step 4- Read the values Step 5- Run a for-loop, add the number with its next number until the upper limit is reached. Store the sum in a variable. Step 6- Display the result Step 7- Stop
예시 1
여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. .
import java.util.Scanner; public class NaturalNumbersSum { public static void main(String[] args) { int my_lower_limit , my_upper_limit, sum; System.out.println("Required packages have been imported"); Scanner scanner = new Scanner(System.in); System.out.println("A scanner object has been defined "); System.out.print("Enter the starting number: "); my_lower_limit = scanner.nextInt(); System.out.print("Enter the max number: "); my_upper_limit = scanner.nextInt(); sum = 0; for(int i = my_lower_limit; i <= my_upper_limit; ++i){ sum += i; } System.out.println("The sum of natural numbers from " + my_lower_limit + " to " + my_upper_limit + " is " +sum); } }
출력
Required packages have been imported A scanner object has been defined Enter the starting number: 50 Enter the max number: 100 The sum of natural numbers from 50 to 100 is 3825
예시 2
여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.
public class NaturalNumbersSum { public static void main(String[] args) { int my_input_1 , my_input_2, sum; my_input_1 = 50; my_input_2 = 100; sum = 0; System.out.println("The first and last numbers are defined as " +my_input_1 +" and "+my_input_2 ); for(int i = my_input_1; i <= my_input_2; ++i){ sum += i; } System.out.println("The sum of natural numbers from " + my_input_1 + " to " + my_input_2 + " is " +sum); } }
출력
The first and last numbers are defined as 50 and 100 The sum of natural numbers from 50 to 100 is 3825