using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AddNumber : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
// 1부터 10까지 다 더한 후 화면에 출력하고싶다.
int number = 0;
for (int i = 0; i < 10; i++)
{
number += i+1;
}
print(number);
// 1부터 100까지 반복하고싶다.
for (int i = 0; i < 100; i++)
{
// 만약 i가 짝수인 정수라면
if (i % 2 == 0)
{
// i를 출력하고싶다.
print(i);
}
}
}
// Update is called once per frame
void Update()
{
}
}
공부/Unity 기초