-
Notifications
You must be signed in to change notification settings - Fork 1
/
Task2_0.cs
44 lines (37 loc) · 1.22 KB
/
Task2_0.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _3._14ton
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введіть ціле число");
int enter = int.Parse(Console.ReadLine());
int LengNum = enter.ToString().Length;
int evenSumm = 0;
int thereDivineNumbers = 0;
for (int i = 0; i < LengNum; i++)
{
int Numbers = enter / 10 * 10;
Numbers = enter - Numbers;
enter = enter / 10;
if (Numbers % 2 == 0)
{
evenSumm += Numbers;
}
if (Numbers % 3 == 0)
{
thereDivineNumbers++;
}
}
Console.WriteLine("Кількість символів у введеному числі : " + LengNum);
Console.WriteLine("Сумма парних чисел : " + evenSumm);
Console.WriteLine("Кількість цифр кратних 3 : " + thereDivineNumbers);
Console.ReadKey();
}
}
}