백준 10951
문제
https://www.acmicpc.net/problem/10951
C# 풀이
using System;
using System.IO;
namespace baekjoon
{
class Program
{
static void Main(string[] args)
{
// 표준 입출력 스트림 reader, writer 만들기
// a, b 입력받기, 분리하기, int로 바꾸기
// 각 테스트 케이스마다 a 와 b 더하기
// 버퍼에 저장, 버퍼 한 번에 비우기
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
while (!sr.EndOfStream)
{
string strInput = sr.ReadLine();
string[] strNum = strInput.Split(' ');
int nNumA = int.Parse(strNum[0]);
int nNumB = int.Parse(strNum[1]);
sw.WriteLine(nNumA + nNumB);
}
sw.Flush();
sr.Close();
sw.Close();
}
}
}
Author And Source
이 문제에 관하여(백준 10951), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@helenhihi/백준-10951
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
using System;
using System.IO;
namespace baekjoon
{
class Program
{
static void Main(string[] args)
{
// 표준 입출력 스트림 reader, writer 만들기
// a, b 입력받기, 분리하기, int로 바꾸기
// 각 테스트 케이스마다 a 와 b 더하기
// 버퍼에 저장, 버퍼 한 번에 비우기
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
while (!sr.EndOfStream)
{
string strInput = sr.ReadLine();
string[] strNum = strInput.Split(' ');
int nNumA = int.Parse(strNum[0]);
int nNumB = int.Parse(strNum[1]);
sw.WriteLine(nNumA + nNumB);
}
sw.Flush();
sr.Close();
sw.Close();
}
}
}
Author And Source
이 문제에 관하여(백준 10951), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@helenhihi/백준-10951저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)