C# 간단 트레이닝 1
주어진 수를 일의자리는 버리고, 10의 자리는 반올림 하는 프로그램을 작성하라 (단, 내부함수 - Round -는 사용할 수 없슴). using System; namespace ConsoleClient { class Program { static void Main(string[] args) { int a = 6510; //일자리수는 0으로 , 10자리는 반올림.. int b = a / 10; int result = Int16.Parse(b.ToString() + "0"); char[] ch = result.ToString().ToCharArray(); char[] ch2 = new char[ch.Length + 1]; int flag = 0; if (Int16.Parse(ch[ch.Length - 2]...