13 lines
198 B
C
13 lines
198 B
C
|
#include "help.h"
|
||
|
|
||
|
// 内部函数
|
||
|
static void _show_sum(int a, int b, int c)
|
||
|
{
|
||
|
printf("%d + %d = %d\n", a, b, c);
|
||
|
}
|
||
|
|
||
|
// 全局函数
|
||
|
void twoNumAdd(int a, int b)
|
||
|
{
|
||
|
_show_sum(a, b, a + b);
|
||
|
}
|