728x90
728x90
https://www.acmicpc.net/problem/2577 2577번: 숫자의 개수 첫째 줄에 A, 둘째 줄에 B, 셋째 줄에 C가 주어진다. A, B, C는 모두 100보다 크거나 같고, 1,000보다 작은 자연수이다. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int A = int.Parse(Console.ReadLine()); int B = int.Parse(Console.ReadLine()); int C = int.Parse(Console.ReadLine()); int mulNum = A * B * C; int[] count = new int[10]; w..
https://www.acmicpc.net/problem/2562 2562번: 최댓값 9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어 www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int[] arr = new int[9]; int max = 0; int index = 0; for(int i = 0; i < 9; i++) { arr[i] = int.Parse(Console.ReadLine());..
https://www.acmicpc.net/problem/10818 10818번: 최소, 최대 첫째 줄에 정수의 개수 N (1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄에는 N개의 정수를 공백으로 구분해서 주어진다. 모든 정수는 -1,000,000보다 크거나 같고, 1,000,000보다 작거나 같은 정수이다. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int[] arr = new int[n]; string[] s = Console.ReadLine().Split(); for (int i = 0..
https://www.acmicpc.net/problem/1110 1110번: 더하기 사이클 0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { int num = int.Parse(Console.ReadLine()); int start = num; int count = 0; while (true) { int a = num / 10; int b = num % 10; num = ..
https://www.acmicpc.net/problem/10951 10951번: A+B - 4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { while(true) { string input = Console.ReadLine(); if(input == null) break; string[] inputNum = input.Split(); int numA = int.Parse(inputNum[0]); int numB = int.Parse(inputNum[1]); int sum = numA + numB..
https://www.acmicpc.net/step/2 while문 단계 입력이 끝날 때까지 A+B를 출력하는 문제. EOF에 대해 알아 보세요. www.acmicpc.net using System; namespace backjoon { class Program { static void Main(string[] args) { while(true) { string[] num = Console.ReadLine().Split(); int numA = int.Parse(num[0]); int numB = int.Parse(num[1]); int sum = numA + numB; if(numA == 0 && numB == 0) break; Console.WriteLine(sum); } } } }