유니티 C# 간단한 구구단 만들기 예시 구현 Unity Multiplication Table

반응형
  • 코드 작성
using UnityEngine;
using UnityEngine.UI;

public class MultiplicationTable : MonoBehaviour
{
    public Text tableText;

    void Start()
    {
        int numRows = 10;
        int numCols = 10;

        string tableData = "";

        for (int row = 1; row <= numRows; row++)
        {
            for (int col = 1; col <= numCols; col++)
            {
                int product = row * col;

                tableData += product + "\t";
            }

            tableData += "\n";
        }

        tableText.text = tableData;
    }
}

의뢰하기

 

유니티로 제작된 게임을 업그레이드 해드립니다. - 크몽

DevPark 전문가의 IT·프로그래밍 서비스를 만나보세요. <p><strong style="font-size: 24px;&q...

kmong.com

 

 

반응형