C# 알고리즘 코딩(프로그래머스)(36)
-
프로그래머스 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도 되기는 하는데 이번 거는 원래 적힌 코드가 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 Solution { public int solution(int n) { int answer = 0; for(int i=1;i
2023.06.28 -
프로그래머스 C# 진료 순서 정하기(자바, 파이썬)
public class Solution { public int[] solution(int[] emergency) { int[] answer = new int[emergency.Length]; for(int i = 0; i
2023.06.27 -
프로그래머스 C# 배열 자르기(StringBuilder, CopyOfRange, 자바, 파이썬)
using System; public class Solution { public int[] solution(int[] numbers, int num1, int num2) { int[] answer = new int[num2-num1+1]; for(int i = num1; i
2023.06.22 -
프로그래머스 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