728x90
728x90
https://www.acmicpc.net/problem/2741 2741번: N 찍기 자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net https://docs.microsoft.com/ko-kr/dotnet/api/system.text.stringbuilder.appendline?view=netcore-3.1 StringBuilder.AppendLine 메서드 (System.Text) 이 인스턴스의 끝에 기본 줄 종결자 또는 지정한 문자열의 복사본과 기본 줄 종결자를 추가합니다.Appends the default line terminator, or a copy of a specified string and the default line..
https://www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net https://docs.microsoft.com/ko-kr/dotnet/api/system.text.stringbuilder?view=netcore-3.1 StringBuilder 클래스 (System.Text) 변경할 수 있는 문자열을 나타냅니다.Represents a mutable string of characters. 이 클래스는 상속될 수 없습니다.This class cannot be inherited. d..
https://www.acmicpc.net/problem/8393 8393번: 합 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. www.acmicpc.net using System; namespace Backjoon { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int sum = 0; for(int i = 1; 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..