6 lines
78 B
C
6 lines
78 B
C
|
//#include <stdio.h>
|
||
|
|
||
|
double mean(double a, double b) {
|
||
|
return (a+b) / 2;
|
||
|
}
|