mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-04 06:11:41 +01:00
18 lines
291 B
C
18 lines
291 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int64_t CNAME(int64_t a, int64_t b);
|
|
|
|
|
|
int main() {
|
|
int result = 0;
|
|
for (int i = -128; i < 128; i++){
|
|
for (int j = -128; j < 128; j++){
|
|
result = i * j;
|
|
|
|
assert(result == (int)CNAME(i,j));
|
|
}
|
|
}
|
|
return 0;
|
|
} |