Программа вычисляет значения введённых пользователем арифметических выражений.
Вы можете скопировать указанный ниже код программы в IDE Small Basic и запустить:
While 1 = 1 ' бесконечный цикл
TextWindow.BackgroundColor = "Blue" ' Изменяем цвет фона
TextWindow.ForegroundColor = "White" ' Изменяем цвет текста
TextWindow.Write("a: ")
a = TextWindow.ReadNumber()
TextWindow.Write("b: ")
b = TextWindow.ReadNumber()
TextWindow.Write("операция: ")
operation = TextWindow.Read()
TextWindow.BackgroundColor = "Blue" ' Изменяем цвет фона
TextWindow.ForegroundColor = "Yellow" ' Изменяем цвет текста
If operation = "+" Then
TextWindow.WriteLine(a + " + " + b + " = " + (a + b))
ElseIf operation = "-" Then
TextWindow.WriteLine(a + " - " + b + " = " + (a - b))
ElseIf operation = "*" Then
TextWindow.WriteLine(a + " * " + b + " = " + (a * b))
ElseIf operation = "/" Then
TextWindow.WriteLine(a + " / " + b + " = " + (a / b))
Else
TextWindow.WriteLine("операция " + operation + " не определена.")
EndIf
EndWhile
Поделиться: