-
Notifications
You must be signed in to change notification settings - Fork 0
/
D3.cs
49 lines (42 loc) · 1 KB
/
D3.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
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace homework1
{
class D3
{
static void Main()
{
int x = Convert.ToInt32(Console.ReadLine());
int s = 0;
for (int i = 0; i <5; i++)
{
if (i == 0)
{
s += x + 1;
}
if(i == 1 || i == 2)
{
s = s * (x + 2) + (x + 2);
if (i == 2)
{
x += 1;
}
}
if (i == 3)
{
s = s * (x + 2) + (x + 2);
x += 1;
}
if (i == 4)
{
s = s * (x + 2) + (x + 2);
}
}
Console.WriteLine(s);
Console.ReadLine();
}
}
}