목록🏃 프로그래머스 (4)
Luna

using System;public class Example{ public static void Main() { Console.WriteLine("!@#$%^&*(\\\'\"?:;"); }}
🏃 프로그래머스
2025. 1. 27. 21:00

using System;public class Example{ public static void Main() { string[] str; str = Console.ReadLine().Split(' '); string s1 = str[0]; int num = int.Parse(str[1]); for (int i = 0; i
🏃 프로그래머스
2025. 1. 27. 20:54

using System;public class Example{ public static void Main() { string[] str; str = Console.ReadLine().Split(' '); int a = int.Parse(str[0]); int b = int.Parse(str[1]); Console.WriteLine("a = {0}", a); Console.WriteLine("b = {0}", b); }}
🏃 프로그래머스
2025. 1. 27. 20:44