Ваше решение, приятной учебы.
Определите порядок действий компьютера при вычислении выражения:
1 /
2 *
3 +
4 -
Готовка еды, уборка квартиры, поход в магазин.
static void Main(string[] args)
{
Console.WriteLine("Введите a");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите b");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("{0}+{1} = {1}+{0} = {2}", a, b, a + b);
Console.ReadKey();
}
1 var
2 cl : array[0 .. 2] of TColor = (clGreen, clRed, clYellow);
3 curr : integer = 0;
4
5 procedure TForm1.Button1Click(Sender: TObject);
6 begin
7 curr := succ(curr) mod 3;
8 Color := cl[curr];
9 end;
10
11 procedure TForm1.FormCreate(Sender: TObject);
12 begin
13 Color := cl[curr];
14 end;