전체 글(293)
-
날로 먹는 영어5
i thought it was just me. - 나만 그런 줄 알았네. there's no need. - 필요 없거든요. how long were you dating for? - 얼마동안 사귀었는데? we were just talking about each other's types. - 우리 그냥 서로의 이상형에 대해서 얘기하고 있었어. i think i can't relate to you. - 난 너를 공감할 수 없을 거 같아. you're all here already. - 니네 이미 다 모였구나. we can't make a reservation for 4 people. - 4명은 예약을 못한대. here's another one. - 여기에 하나 더 있어. do you still keep in ..
2023.08.01 -
날로 먹는 영어4
just be you. - 그냥 너답게 해. i think i've seen one of your videos before. - 나 너 영상 본적 있는 거 같아. do you have makeup on or no? - 너 화장 한거임 안한거임? they're all defective. - 전부 다 불량품이잖아. sorry, i raised my voice to you. - 언성 높여서 미안해. there's no time for this. - 이럴 때가 아니야. just throw something on and come out. - 그냥 대충 걸치고 나와. let me just hit the shower first. - 먼저 샤워 좀 할게. fine something fun to do at home. -..
2023.07.31 -
날로 먹는 영어3
stop bugging me. - 귀찮게 굴지 좀 마. i'm the type who can't stop smiling. - 저는 웃음에 헤퍼요. why do you look so sad? - 왜 그렇게 슬픈 표정이야? it tastes a little bland to me. - 내 입에는 좀 싱거워. my self-esteem has gone up by being here. - 여기에 와서 내 자존감이 엄청 높아졌어. call me if you change your mind. - 맘 바뀌면 연락해. let me pour you a shot. - 내가 술 한잔 따라줄게. it's really crowded here. - 여기 너무 복잡하다. how long do you think we're gonna b..
2023.07.30 -
프로그래머스 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