You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
519 B
57 lines
519 B
#0
|
|
|
|
define z(a[]) {for (i = 0; i < l; ++i) {
|
|
a[i]
|
|
}
|
|
}
|
|
|
|
define x(a[]) {
|
|
|
|
#00000000000000000000000000000000000
|
|
auto a
|
|
|
|
for (a = 0; a < l; ++a) {
|
|
a[a] = -a
|
|
}
|
|
|
|
z(a[])
|
|
}
|
|
|
|
define g(x[], y[]) {
|
|
return x[0] - y[0]
|
|
}
|
|
|
|
define h(u000 x[]) {
|
|
return g(x[], y[])
|
|
}
|
|
|
|
define m(*x[], *y[]) {
|
|
return x[0] / y[0]
|
|
}
|
|
|
|
define n(*y[], *x[]) {
|
|
return m(x[], y[])
|
|
}
|
|
|
|
for (i = 0; i < 101; ++i) {
|
|
a[i] = i
|
|
}
|
|
|
|
a[104] = 200
|
|
|
|
l = length(a[])
|
|
|
|
for (i = 0; i <= l; ++i) {
|
|
a[i]
|
|
}
|
|
|
|
z(a[])
|
|
x(a[])
|
|
z(a[])
|
|
l
|
|
|
|
x[0] = 5
|
|
y[0] = 4
|
|
|
|
h(x[], y[])
|