작성일 :

문제 링크

25756번 - 방어율 무시 계산하기

설명

간단한 사칙연산 문제입니다.

입력으로 주어지는 정수들을 파싱한 후,
문제에 주어진 ‘방어율 무시 수치의 계산 식` 을 이용하여 결과값을 출력합니다.



Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Solution {
  class Program {
    static void Main(string[] args) {

      int.TryParse(Console.ReadLine(), out int n);

      string[]? input = Console.ReadLine()?.Split();

      double defenseIgRate = 0;
      for (int i = 0; i < n; i++) {
        int.TryParse(input?[i], out int effPotion);
        defenseIgRate = (effPotion + defenseIgRate) - ((defenseIgRate * effPotion) / 100);

        Console.WriteLine("{0:F6}", defenseIgRate);

      }
    }
  }
}



[ 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 n; cin >> n;

  double defenseIgRate = 0;
  for (int i = 0; i < n; i++) {
    int effPotion; cin >> effPotion;
    defenseIgRate = (effPotion + defenseIgRate) - ((defenseIgRate * effPotion) / 100);

    cout.setf(ios::fixed); cout.precision(6);
    cout << defenseIgRate << "\n";
  }

  return 0;
}