1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-10-18 16:48:41 +00:00
202401-programming-assignments/【实践课内】2.选择结构1/7-1 整数绝对值.c

16 lines
175 B
C
Raw Normal View History

2024-10-18 08:13:01 +00:00
#include <stdio.h>
int main() {
int x;
scanf("%d", &x);
if (x < 0) {
printf("%d\n", -x);
} else {
printf("%d\n", x);
}
return 0;
}