П, Н, Н, П, П, В, В, П, П, В, П, В.
НОД будем находить при помощи Эвклидового алгоритма, а НОК - по формуле:
.
program nod_nok;
var
a, b, g: integer;
l: real;
function Gcd(a, b: integer): integer;
var
t: integer;
begin
while b <> 0 do
begin
t := b;
b := a mod b;
a := t;
end;
Gcd := a;
end;
function Lcm(a, b, gcd: integer): real;
begin
Lcm := Abs( a * b ) / gcd;
end;
begin
write('a = ');
readln(a);
write('b = ');
readln(b);
g := Gcd(a, b);
writeln('НОД: ', g);
l := Lcm(a, b, g);
writeln('НОК: ', l:1:0);
end.
print("Ноль в качестве знака операции "
"завершит работу программы")
while True:
s = input("Знак (+,-,*,/): ")
if s == '0': break
if s in ('+','-','*','/'):
x = float(input("x="))
y = float(input("y="))
if s == '+':
print("%.2f" % (x+y))
elif s == '-':
print("%.2f" % (x-y))
elif s == '*':
print("%.2f" % (x*y))
elif s == '/':
if y != 0:
print("%.2f" % (x/y))
else:
print("Деление на ноль!")
else:
print("Неверный знак операции!")
using System;
using static System.Console;
namespace ConsoleApp9
{
class Program
{
static void Main(string[] args)
{
double a, b, c, v, x, y;
Write("Input a: ");
a= double.Parse(ReadLine());
Write("Input b: ");
b = double.Parse(ReadLine());
Write("Input c: ");
c = double.Parse(ReadLine());
Write("Input x: ");
x = double.Parse(ReadLine());
Write("Input y: ");
y = double.Parse(ReadLine());
if (x < 3 && y < 0)
v = ((a + b + c) / 2) * Math.Min(x, Math.Min(y, (x + y) / (x - y)));
else if (x > 0 && y > 1)
v = Math.Max(x * x, y * y * y);
else
v = y * (a + b + c);
WriteLine("v=" + v.ToString());
ReadKey();
}
}
}