Files
OOP-Cpp/oop_hw1/oop_hw1_7/fib.h
2025-08-11 00:01:30 +08:00

10 lines
141 B
C

#pragma once
#ifndef fib
#define fib
long& smaller(long& a, long& b);
long& bigger(long& a, long& b);
void fibe(int count);
#endif // !fib