ЯП, к сожалению, у спрашивающих не принято указывать...
python:
x = float(input("x: "))
print((x+2)/5)
pascal:
var
x: real;
begin
writeln('x: ');
readln(x);
writeln((x+2)/5);
end.
c#:
using System;
class MainClass {
public static void Main (string[] args) {
Console.WriteLine ("x: ");
float x = Convert.ToSingle(Console.ReadLine());
Console.WriteLine((x+2)/5);
}
ЯП, к сожалению, у спрашивающих не принято указывать...
python:
x = float(input("x: "))
print((x+2)/5)
pascal:
var
x: real;
begin
writeln('x: ');
readln(x);
writeln((x+2)/5);
end.
c#:
using System;
class MainClass {
public static void Main (string[] args) {
Console.WriteLine ("x: ");
float x = Convert.ToSingle(Console.ReadLine());
Console.WriteLine((x+2)/5);
}
}