본문 바로가기

코딩32

[코딩일기] C# 함수(params) using System.Collections; using System.Collections.Generic; using UnityEngine; public class Helloworld_2 : MonoBehaviour {     // 함수     // 변수는 중괄호 {}를 기준으로 입력 및 사용한다.      int Square(int x)                   // C# 에서는, 함수 대문자로 시작 (변수는 소문자)     {         return x * x;     }     void Like(int x, params string[] message)      // params를 입력해주면, 배열 자체를 넘겨주는 것이 아니라 개수가 정해지지 않은 자료형의 데이터를 넘김     {     .. 2024. 7. 16.
[코딩일기] C# 함수(default 키워드) using System.Collections; using System.Collections.Generic; using UnityEngine; public class Helloworld_2 : MonoBehaviour {     // 함수     // 변수는 중괄호 {}를 기준으로 입력 및 사용한다.      int Square(int x)                   // C# 에서는, 함수 대문자로 시작 (변수는 소문자)     {         return x * x;     }     void Like(string message, int n = 3)    // 여기서 3이라고 하면, 3번만 출력하지만, Start에서 Like에다가 5번 출력하라고 입력되어 있으면 5번 출력함. Start에서 Li.. 2024. 7. 16.
[코딩일기] C# 함수(ref, out) using System.Collections; using System.Collections.Generic; using UnityEngine; public class Helloworld_2 : MonoBehaviour {     // 함수     // 변수는 중괄호 {}를 기준으로 입력 및 사용한다.      int Square(int x)                   // C# 에서는, 함수 대문자로 시작 (변수는 소문자)     {         return x * x;     }     void Like(out int n)                    // void 형으로 선언을 했기 때문에 return 값이 없어도 아무런 문제가 생기지 않음     {         n = 5;       .. 2024. 7. 16.
[코딩일기] C# 복습차원 연습문제(11 문제) using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using Unity.VisualScripting; using UnityEngine; public class HelloWorld : MonoBehaviour {     void Start()     {         //Debug.Log("문제 1 ======================================");         // 변수 a에 초기값, 변수 b에 공비를 저장한 후 등비수열 10항 출력         //int a = 3;         //int b = 2;         //for (int i = .. 2024. 7. 11.