본문 바로가기
공부/Unity 기초

두 자연수 사이의 합 구하기

by svcbn 2022. 5. 12.

자연수 a, b 가 주어질 때 a ~ b 사이에 속한 모든 자연수의 합을 Console 창에 출력하는 코드를 만들어보세요.

 

예) a = 3, b = 5이면 3 + 4 + 5 = 12

12가 Console 창에 나오면 됩니다.

 

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class SumBetweenNumber : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        // 자연수 a,b 가 주어질 때
        int a = 6;
        int b = 3;
        int answer = 0;
        

        // a가 b보다 작으면
        
        // a가 b보다 크면
        if (a > b)
        {
            int temp = a;
            a = b;
            b = temp;
        }

        // a~b 사이에 속한 모든 자연수의 합을
        for (int i = a; i <= b; i++)
        {
            answer += i;

        }

        // console창에 출력
        print(answer);
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

'공부 > Unity 기초' 카테고리의 다른 글

콜라츠 추측  (0) 2022.05.12
제곱근 판별  (0) 2022.05.12
약수의 합  (0) 2022.05.12
건축 평면도 연습  (0) 2022.05.11
자릿수 분리하기  (0) 2022.05.11