BUPT-homework/semester1/pset7/1-fun.c

27 lines
416 B
C
Raw Normal View History

2021-11-04 19:42:37 +08:00
// #include <stdio.h>
//
// // Function prototypes
// int fun(int input);
//
// int main(void)
// {
// // Initialize variables
// int x;
// scanf("%d", &x);
//
// printf("%d\n", fun(x));
// return 0;
// }
int fun(int input) {
if (input > 100) {
return input * input - 24;
} else if (input > 10) {
return input * 3 - 11;
} else if (input >= 1) {
return input * 2 - 1;
} else {
return input;
}
}