[백준 9085] 더하기 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
입력으로 주어지는 n
개의 자연수의 총 합을 구하는 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Solution {
class Program {
static void Main(string[] args) {
var cntCase = int.Parse(Console.ReadLine()!);
for (int c = 0; c < cntCase; c++) {
var cntNum = int.Parse(Console.ReadLine()!);
var nums = Console.ReadLine()!.Split(' ').Select(int.Parse).ToArray();
int sum = 0;
for (int i = 0; i < cntNum; i++)
sum += nums[i];
Console.WriteLine(sum);
}
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int cntCase; cin >> cntCase;
for (int c = 0; c < cntCase; c++) {
int cntNum; cin >> cntNum;
int sum = 0;
for (int i = 0; i < cntNum; i++) {
int num; cin >> num;
sum += num;
}
cout << sum << "\n";
}
return 0;
}