More tests to go.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-08 09:31:58 +02:00
parent 58b63a9f16
commit 580d1af308
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 30 additions and 0 deletions

26
tests/int2alpha_test.aer Normal file
View File

@ -0,0 +1,26 @@
class Program {
string num2alpha(int $n) {
string $r = '';
for(int $i = 1; $n >= 0 && $i < 10; $i++) {
$r = chr(0x41 + ($n % pow(26, $i) / pow(26, $i - 1))) + $r;
$n -= pow(26, $i);
}
return $r;
}
int alpha2num(string $a) {
int $r = 0;
int $l = strlen($a);
for(int $i = 0; $i < $l; $i++) {
$r += pow(26, $i) * (ord($a[$l - $i - 1]) - 0x40);
}
return (int) $r - 1;
}
void main() {
import('math');
var_dump($this->alpha2num("Salut"), $this->num2alpha(1723), $this->num2alpha(9854), $this->alpha2num("Base64"));
}
}

4
tests/int2alpha_test.exp Normal file
View File

@ -0,0 +1,4 @@
int(9293725)
string(3 'BNH')
string(3 'NOA')
int(39764075)