전체 글(293)
-
날로 먹는 영어2
heat it in the microwave. - 전자레인지에 데워. there's something wrong with this yogurt. - 이 요구르트 이상해. how much will you give me? - 나한테 얼마 줄 건데. it's not good to assume things about people. - 사람 넘겨짚는 건 안좋은거야. you're on the side of him. - 너가 걔 편들고 있잖아. i have met her/him before. - 나 걔 만난 적있어. did you break up? - 너 헤어졌어? i'll treat you to delicious food. - 내가 맛있는 거 사줄 게. i'm getting hungry looking at the ..
2023.03.05 -
날로 먹는 영어1
fold the laundry. - 빨래 좀 개 i can't do this by myself. - 나 혼자선 이걸 할 수 없어 my dog is running away from me. - 강아지가 도망다녀 he feels fluffy. - 동물 만지면서) 푹신푹신하다 you need a little rest. - 니 좀 쉬어라 i'll listen to a podcast on the way. - 나 가는 길에 팟캐스트 들을거야. don't look down on us. - 우리 무시하지마. stop burping. - 트름 좀 그만해. i won't tell anybody. - 비밀로 할 게. we can't afford this - 우리 형편에 이걸 어떻게 사? can you hold on a sec..
2023.03.04 -
백준 A+B(자바, C#)
자바 mport java.util.*; public class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a + b); } } ////////////////////////// C# using System; namespace Baekjoon { class Program { static void Main() { string s = Console.ReadLine(); string[] ss = s.Split(); int a = int.Parse(ss[0]); int b = int.Parse(s..
2023.02.24 -
C# 두 수의 차, 두 수의 곱 프로그래머스
using System; public class Solution { public int solution(int num1, int num2) { return num1 - num2; } } ///////////// using System; public class Solution { public int solution(int num1, int num2) { return num1 * num2; } }
2023.02.13 -
나머지 구하기 프로그래머스
using System; public class Solution { public int solution(int num1, int num2) { if (num1 > 100 || num1 100 || num2
2023.02.11