코딩테스트(2)
-
프로그래머스 C# 문자열 붙여서 출력하기
문자열을 입력할 때 공백이 있으면 그걸 없애고 출력해라. Replace도 되기는 하는데 이번 거는 원래 적힌 코드가 Console.ReadLine 같은 걸 활용한 거라서 배열로 읽어오고 출력하게 했다. using System; public class Example { public static void Main() { String[] input; Console.Clear(); input = Console.ReadLine().Split(' '); String s1 = input[0]; String s2 = input[1]; Console.WriteLine(s1+s2); } }
2023.07.14 -
프로그래머스 C# 덧셈식 출력하기
using System; public class Example { public static void Main() { String[] s; Console.Clear(); s = Console.ReadLine().Split(' '); int a = Int32.Parse(s[0]); int b = Int32.Parse(s[1]); int c = a + b; Console.WriteLine("{0}", a + " + " + b + " = " + c); } }
2023.05.21