c#/수업 과제

리나

yeeendy 2023. 1. 1. 17:09

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Hello_World
{
    internal class Program
    {
        static void Main(string[] args)
        {
            string nickname = "리나";
            Console.WriteLine("이름 : {0}", nickname);

            int maxSpeed = 1;
            Console.WriteLine("최고속도 = {0}", maxSpeed);

            int acceleration = 6;
            Console.WriteLine("가속도 = {0}", acceleration);

            int power = 2;
            Console.WriteLine("힘 = {0}", power);

            int control = 5;
            Console.WriteLine("컨트롤 = {0}", control);

           

        }
    }
}

'c# > 수업 과제' 카테고리의 다른 글

메서드 연습1  (0) 2023.01.03
DnD  (0) 2023.01.01
간호사 샐리  (0) 2023.01.01
버스트  (0) 2023.01.01
Splint Mail Gloves  (0) 2022.12.30