代码搜索结果
找到约 10,000 项符合
Input 的代码
input2
3 * (2 + 4)
x = 24
y = x + 1
3 * y
2 + x + y
input3
foo = 12 * 2
foo / 5
thisisareallylongvariable = 42
thisisareallylongvariable * 22
input1
x = 3 * 2
y = x + 1
3 * y
input4
sqrt(3)
foo(3)
sqrt = 5
sqrt(sqrt)
input2
3 * (2 + 4)
x = 24
y = x + 1
3 * y
2 + x + y
input3
foo = 12 * 2
foo / 5
thisisareallylongvariable = 42
thisisareallylongvariable * 22
input1
x = 3 * 2
y = x + 1
3 * y
input2
3 + 2 - 9 + 4 + 2 - 3
input1
3 + 2
input2
program test (out);
var max,x: integer;
begin
max := 44;
readln(x);
if x > max then
x := x - max
else
x := max - x;
writeln(x)
end.