27 lines
416 B
C
27 lines
416 B
C
// #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;
|
|
}
|
|
}
|