#include "stdlib.h" #include "stdio.h" int zwroc(int x) { switch(x) { case '0': return x; case '1': return x; default: return zwroc(x - 1) - zwroc(x - 2); } } int main() { printf("%i\n", zwroc(0)); system("pause"); }