728x90
728x90
https://www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int t = int.Parse(Console.ReadLine()); for (int i = 0; i < t; i++) { string[] num = Console.ReadLine().Split(); int numA = int.Parse(num[0]); int numB = int.Parse(num[1]); Console.WriteLine(numA + num..
https://www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int num = int.Parse(Console.ReadLine()); for (int i = 1; i < 10; i++) { Console.WriteLine($"{num} * {i} = {num * i}"); } } } }
https://www.acmicpc.net/problem/2884 2884번: 알람 시계 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만, www.acmicpc.net using System; namespace Backjoon { class Program { static void Main(string[] args) { string[] time = Console.ReadLine().Split(" "); int h = int.Parse(time[0]); int m = int.Parse(time[1]); if (m < 45) { m += 60; h--; if (h < 0) h..
https://www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net using System; namespace Backjoon { class Program { static void Main(string[] args) { int x = int.Parse(Console.ReadLine()); int y = int.Parse(Console.ReadLine()); if (x > 0) { if (y > 0) { Console.WriteLine("1"); } else if (y ..
https://www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net using System; namespace Backjoon { class Program { static void Main(string[] args) { int year = int.Parse(Console.ReadLine()); if (year 4000) return; if (year % 4 == 0 && year % 100 != 0) { Console.WriteL..
https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net using System; namespace Backjoon { class Program { static void Main(string[] args) { string a = Console.ReadLine(); int score = int.Parse(a); if(score=90) { Console.WriteLine("A"); } else if(score = 80) { Console.WriteLine(..