SHOW:
|
|
- or go back to the newest paste.
| 1 | namespace ConsoleInputOutput | |
| 2 | {
| |
| 3 | using System; | |
| 4 | public static class SumOfFive | |
| 5 | {
| |
| 6 | public static void Main() | |
| 7 | {
| |
| 8 | string input = Console.ReadLine(); | |
| 9 | input = input.Replace(',','.');
| |
| 10 | - | decimal sum = 0; |
| 10 | + | decimal sum = 0.00m; |
| 11 | string[] numbersAsStrings = input.Split(' ');
| |
| 12 | for (int i = 0; i < numbersAsStrings.Length; i++) | |
| 13 | {
| |
| 14 | sum += decimal.Parse(numbersAsStrings[i]); | |
| 15 | } | |
| 16 | Console.WriteLine(sum); | |
| 17 | } | |
| 18 | } | |
| 19 | } |