ComputerScience 51

백준 11718번: 그대로 출력하기

using System; class Program { static void Main(string[] args) { while (true) { string input = Console.ReadLine(); if (string.IsNullOrEmpty(input) == true) break; Console.WriteLine(input); } } } 문제 출처 https://www.acmicpc.net/problem/11718 11718번: 그대로 출력하기 입력이 주어진다. 입력은 최대 100줄로 이루어져 있고, 알파벳 소문자, 대문자, 공백, 숫자로만 이루어져 있다. 각 줄은 100글자를 넘지 않으며, 빈 줄은 주어지지 않는다. 또, 각 줄은 공백으로 시 www.acmicpc.net

백준 11654번: 아스키 코드

using System; class Program { static void Main(string[] args) { string ascii = Console.ReadLine(); char[] c = ascii.ToCharArray(); int code = (int)c[0]; Console.WriteLine(code); } } 문제 출처 https://www.acmicpc.net/problem/11654 11654번: 아스키 코드 알파벳 소문자, 대문자, 숫자 0-9중 하나가 주어졌을 때, 주어진 글자의 아스키 코드값을 출력하는 프로그램을 작성하시오. www.acmicpc.net

백준 4344번: 평균은 넘겠지

한참 헤메었다. Visual Studio에서 디버깅 하면서 진행하였다. 소수점 3자리까지 반올림해서 표시하는 부분에서 많이 막혔다. using System; class Program { public class TestCaseData { public int total = 0; public int[] scoresArray = null; public double average = 0f; public double overAverageRate = 0f; } static void Main(string[] args) { string stringTestCase = Console.ReadLine(); int intTestCase = System.Convert.ToInt32(stringTestCase); TestCaseD..