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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Quest
{
class Program
{
public static void Main()
{
double pay = 1000;
int pay_1 = 1000;
for (int i = 1; i <= 10; i++)
{
pay = (pay * 0.02) + pay;
if (pay - pay_1 >= 30)
{
Console.WriteLine("Величина ежемесячного увеличения вклада превысила 30 руб.");
}
if (pay >= 1200)
{
Console.ForegroundColor = ConsoleColor.DarkRed;
Console.WriteLine("Размер вклада превысил 1200 руб.");
Console.ResetColor();
}
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.WriteLine("Через " + i + " месяц деньги стали: " + pay);
Console.ResetColor();
}
// б)сумму вклада через три, четыре, ..., двенадцать месяцев; ДЕЛАЕТСЯ ТАК:
// for (int i = 3; i <= 12; i++)
// {
//Console.WriteLine("Через " + i + " месяц деньги стали: " + pay);
// }
Console.ReadKey();
}
}
}