C#코딩테스트(3)
-
프로그래머스 C# 홀짝
using System; public class Example { public static void Main() { String[] s; Console.Clear(); s = Console.ReadLine().Split(' '); int a = Int32.Parse(s[0]); if(a%2 == 0) { Console.WriteLine(a + " is even"); } else { Console.WriteLine(a + " is odd"); } } } /// 홀수면 odd, 짝수면 even이 출력되도록 한다.
2023.07.15 -
프로그래머스 C# 특정 문자 제거하기(replace, 파이썬, 자바)
using System; public class Solution { public string solution(string my_string, string letter) { string answer = my_string.Replace(letter, ""); // letter에 나온 한 문자만을 삭제한다. return answer; } } // replace 사용하기 파이썬 def solution(my_string, letter): return my_string.replace(letter, '') 자바 class Solution { public String solution(String my_string, String letter) { String answer = ""; answer = my_string.re..
2023.06.21 -
프로그래머스 C# 짝수와 홀수의 개수(자바, 파이썬)
using System; public class Solution { public int[] solution(int[] num_list) { int[] answer = new int[2]; for(int i=0; i
2023.06.20