Top
백준 온라인 저지 / 11382 꼬마 정민
https://www.acmicpc.net/problem/11382
사용언어 : C# (.NET)
알고리즘 :
□코드 작성(해답지)
using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;
namespace boj
{
class Program
{
static void Main(string[] args)
{
string stringInput = Console.ReadLine();
string[] arrayInput = stringInput.Split(' ', StringSplitOptions.None);
long[] intResult = new long[3] { 0, 0, 0 };
for (int i = 0; i < 3; i++)
{
intResult[i] = System.Convert.ToInt64(arrayInput[i]);
}
long total = 0;
for (int i = 0; i < 3; i++)
{
total += intResult[i];
}
Console.WriteLine(total);
}
}
}
'전산 소프트웨어(코딩) > C#[메인]' 카테고리의 다른 글
[백준/C#(.NET)] 10171 고양이 (0) | 2023.07.05 |
---|---|
[백준/C#(.NET)] 2588 곱셈 (0) | 2023.07.05 |
[백준/C#(.NET)] 10430 나머지 (0) | 2023.07.05 |
[백준/C#(.NET) 18108 1998년생인 내가 태국에서는 2541년생?! (0) | 2023.07.05 |
[백준/C#(.NET) 10926 ??! (0) | 2023.07.05 |
전산 소프트웨어(코딩)/C#[메인]