1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课外】10.函数1/6-1 符号函数.c

6 lines
86 B
C
Raw Normal View History

2024-11-20 03:07:17 +00:00
int sign(int x) {
if (x == 0) return 0;
if (x > 0) return 1;
return -1;
}