6 lines
82 B
C
6 lines
82 B
C
|
#ifndef __A_H__
|
||
|
#define __A_H__
|
||
|
|
||
|
int factorial(int); // 声明阶乘函数
|
||
|
|
||
|
#endif
|