mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
6 lines
86 B
C
6 lines
86 B
C
|
int sign(int x) {
|
||
|
if (x == 0) return 0;
|
||
|
if (x > 0) return 1;
|
||
|
return -1;
|
||
|
}
|