Начало
Ввод g
d=g
c=d
b=c
a=b
Вывод а
Конец
Или
Ввод g
i=g
a=i
Вывод а
Да вариантов в принципе много
A-b=2-3=-1
a=-1
a+2*b=-1+2*3=5
b=5
a*b=-1*5=-5
a=-5
a/b=-5/5=-1
b=-1
Ответ: 2
В ходе построение логически функции нужно по заданный таб
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace pzn
{
class Program
{
public static void Main(string[] args)
{
int x = Convert.ToInt32(Console.ReadLine());
int y = Convert.ToInt32(Console.ReadLine());
int temp;
if (x<y)
{
x ^= y;
y ^= x;
x ^= y;
}
Console.WriteLine("x={0}, y={1}", x, y);
Console.ReadKey();
}
}
}
Разделы документа могут иметь <u>различные стили</u>, <em>формат, иметь разное количество колонок и пр.
</em>