6 lines
79 B
C
6 lines
79 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int func1(int x) {
|
||
|
return (x-2)*(x-6)*(x-10)*(x-15);
|
||
|
}
|