자연수 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()
{
}
}