전체 글 (75) 썸네일형 리스트형 C# 주차장 요금계산 시스템 using System; namespace ParkingManagement { class Program { static void Main(string[] args) //진입점 { Car car1 = new Car(); car1.plateNumber = "123가 4567"; //번호판 지정 car1.InTime = DateTime.Now; Console.WriteLine(car1.InTime); } } } using System; using System.Collections.Generic; using System.Text; namespace ParkingManagement { class Car //설계도 { public string plateNumber; //private라는 접근제한자를 가지고 있음 -.. 문자열 분리 using System; using System.Linq; namespace Season { class Program { static void Main(string[] args) { string input = "감자,고구마,토마토"; //문자열 구부기호: 컴마, 공백 string[] inputs = input.Split(new char[] { ',', ' ' }); foreach (var item in inputs) { Console.WriteLine("Joined string => " + string.Join(" : ", inputs)); } } } } using System; using System.Linq; namespace Season { class Program { static void Main.. continue using System; using System.Linq; namespace Season { class Program { static void Main(string[] args) { for (int i = 1; i 이전 1 ··· 17 18 19 20 21 22 23 ··· 25 다음