배운 점:
C#에서 제곱하는걸 오랜만에 해봤다. Math.Pow
실수한 점:
using System;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
int[] input = Array.ConvertAll(Console.ReadLine().Trim().Split(' '), int.Parse);
int answer = 0;
// 제곱한 수들을 합하고
foreach (var item in input)
{
answer += ReturnPow(item);
}
// 10으로 나눈 나머지를 출력
Console.WriteLine(answer%10);
}
// 제곱한 수를 반환해주는 메소드
private static int ReturnPow(int num) {
return (int)Math.Pow(num, 2);
}
}
}
728x90
'알고리즘 문제 풀이 > 백준' 카테고리의 다른 글
[백준 10818번/C#] 최소, 최대 (0) | 2023.10.22 |
---|---|
[백준 2562번/C#] 최댓값 (0) | 2023.10.22 |
[백준 2439번/C#] 별 찍기 - 2 (0) | 2023.10.21 |
[백준 1438번/C#] 별 찍기 - 1 (0) | 2023.10.21 |
[백준 1330번/C#] 두 수 비교하기 (0) | 2023.10.21 |