728x90
728x90
https://www.acmicpc.net/problem/11022 11022번: A+B - 8 각 테스트 케이스마다 "Case #x: A + B = C" 형식으로 출력한다. x는 테스트 케이스 번호이고 1부터 시작하며, C는 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 = 1; i
https://www.acmicpc.net/problem/11021 11021번: A+B - 7 각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다. www.acmicpc.net using System; using System.Text; namespace backjoon { class Program { static void Main(string[] args) { StringBuilder number = new StringBuilder(); int t = int.Parse(Console.ReadLine()); int[] num = new int[t]; for(int i = 0; i < t; i++) { string[] s = Console.R..
https://www.acmicpc.net/problem/2742 2742번: 기찍 N 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. www.acmicpc.net using System; using System.Text; namespace backjoon { class Program { static void Main(string[] args) { int t = int.Parse(Console.ReadLine()); StringBuilder sb = new StringBuilder(); for (int i = t; i >= 1; i--) { sb.Append(i + "\n"); } Console.WriteLine(sb.ToString()); } } }
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