7 lines
74 B
C
7 lines
74 B
C
#include "sub.h"
|
|
|
|
double
|
|
mean(double a, double b) {
|
|
return (a+b) / 2;
|
|
}
|