백준 2742
문제
https://www.acmicpc.net/problem/2742
C# 풀이
using System;
using System.IO;
namespace baekjoon
{
class Program
{
static void Main(string[] args)
{
// 표준 입출력 스트림 reader,writer 만들기, 입력받기, int로 바꾸기
// n부터 1까지의 값을 버퍼에 저장, 버퍼 한 번에 비우기
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
string strInput = sr.ReadLine();
int nNum = int.Parse(strInput);
for (int i = nNum; i >= 1; i--)
{
sw.WriteLine(i);
}
sw.Flush();
sr.Close();
sw.Close();
}
}
}
Author And Source
이 문제에 관하여(백준 2742), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@helenhihi/백준-2742
저자 귀속: 원작자 정보가 원작자 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 만들기, 입력받기, int로 바꾸기
// n부터 1까지의 값을 버퍼에 저장, 버퍼 한 번에 비우기
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
string strInput = sr.ReadLine();
int nNum = int.Parse(strInput);
for (int i = nNum; i >= 1; i--)
{
sw.WriteLine(i);
}
sw.Flush();
sr.Close();
sw.Close();
}
}
}
Author And Source
이 문제에 관하여(백준 2742), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@helenhihi/백준-2742저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)