diff options
Diffstat (limited to 'testapp/c_cpp_files/main_mean.cpp')
-rwxr-xr-x | testapp/c_cpp_files/main_mean.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testapp/c_cpp_files/main_mean.cpp b/testapp/c_cpp_files/main_mean.cpp index f23db68..21a4b1a 100755 --- a/testapp/c_cpp_files/main_mean.cpp +++ b/testapp/c_cpp_files/main_mean.cpp @@ -21,17 +21,17 @@ void check(T expect, T result) int main(void) { bool result; - result = mean(11, 11, 11); - printf("Input submitted to the function: 11, 121, 11"); + result = mean(11, 11, 11); + printf("Input submitted to the function: 11, 121, 11"); check(true, result); result = mean(16, 12, 9); - printf("Input submitted to the function: 16, 144, 9"); + printf("Input submitted to the function: 16, 144, 9"); check(true, result); result = mean(19, 221, 9); - printf("Input submitted to the function: 19, 221, 9"); + printf("Input submitted to the function: 19, 221, 9"); check(false, result); result = mean(34, 12, 3); - printf("Input submitted to the function: 11, 121, 11"); + printf("Input submitted to the function: 11, 121, 11"); check(false, result); printf("All Correct\n"); return 0; |