From 754244da53f7e0a63c272ce6d1ffb15c1d5be0ae Mon Sep 17 00:00:00 2001 From: prathamesh Date: Mon, 8 Jul 2013 11:22:01 +0530 Subject: Added few questions. Made changes to fix minor bugs which were found during testing. --- testapp/c_cpp_files/main_blackJack.cpp | 41 ++++++++++++++++++++++++++++++++++ testapp/c_cpp_files/main_lessThan9.cpp | 38 +++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100755 testapp/c_cpp_files/main_blackJack.cpp create mode 100755 testapp/c_cpp_files/main_lessThan9.cpp (limited to 'testapp/c_cpp_files') diff --git a/testapp/c_cpp_files/main_blackJack.cpp b/testapp/c_cpp_files/main_blackJack.cpp new file mode 100755 index 0000000..e4f0963 --- /dev/null +++ b/testapp/c_cpp_files/main_blackJack.cpp @@ -0,0 +1,41 @@ +#include +#include + +extern int blackJack(int, int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + result = blackJack(11, 12); + printf("Input submitted to the function: 11, 12"); + check(12, result); + result = blackJack(15, 19); + printf("Input submitted to the function: 15, 19"); + check(19, result); + result = blackJack(10, 21); + printf("Input submitted to the function: 10, 21"); + check(21, result); + result = blackJack(31, 22); + printf("Input submitted to the function: 31, 22"); + check(0, result); + result = blackJack(91, 61); + printf("Input submitted to the function: 91, 61"); + check(0, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_lessThan9.cpp b/testapp/c_cpp_files/main_lessThan9.cpp new file mode 100755 index 0000000..1a89731 --- /dev/null +++ b/testapp/c_cpp_files/main_lessThan9.cpp @@ -0,0 +1,38 @@ +#include +#include + +extern bool lessThan9(int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + result = lessThan9(10); + printf("Input submitted to the function: 10"); + check(false, result); + result = lessThan9(17); + printf("Input submitted to the function: 17"); + check(true, result); + result = lessThan9(16); + printf("Input submitted to the function: 16"); + check(true, result); + result = lessThan9(15); + printf("Input submitted to the function: 15"); + check(false, result); + printf("All Correct\n"); + return 0; +} -- cgit From fbeed0456532b2b36f02a26dbfffc132235d5e4c Mon Sep 17 00:00:00 2001 From: prathamesh Date: Mon, 19 Aug 2013 13:09:10 +0530 Subject: This branch was created for testing the app. Changes made here are during the testing phase. And the feedbacks recevied are implemented. --- testapp/c_cpp_files/main_array_check.cpp | 34 ++++++++++++++++++++++ testapp/c_cpp_files/main_array_check_all.cpp | 34 ++++++++++++++++++++++ testapp/c_cpp_files/main_check_digit.cpp | 32 +++++++++++++++++++++ testapp/c_cpp_files/main_count667.cpp | 42 ++++++++++++++++++++++++++++ testapp/c_cpp_files/main_count7.cpp | 42 ++++++++++++++++++++++++++++ testapp/c_cpp_files/main_mean.cpp | 38 +++++++++++++++++++++++++ testapp/c_cpp_files/main_roundTo10.cpp | 42 ++++++++++++++++++++++++++++ testapp/c_cpp_files/main_specialSum.cpp | 42 ++++++++++++++++++++++++++++ testapp/c_cpp_files/main_within.cpp | 38 +++++++++++++++++++++++++ 9 files changed, 344 insertions(+) create mode 100755 testapp/c_cpp_files/main_array_check.cpp create mode 100755 testapp/c_cpp_files/main_array_check_all.cpp create mode 100755 testapp/c_cpp_files/main_check_digit.cpp create mode 100755 testapp/c_cpp_files/main_count667.cpp create mode 100755 testapp/c_cpp_files/main_count7.cpp create mode 100755 testapp/c_cpp_files/main_mean.cpp create mode 100755 testapp/c_cpp_files/main_roundTo10.cpp create mode 100755 testapp/c_cpp_files/main_specialSum.cpp create mode 100755 testapp/c_cpp_files/main_within.cpp (limited to 'testapp/c_cpp_files') diff --git a/testapp/c_cpp_files/main_array_check.cpp b/testapp/c_cpp_files/main_array_check.cpp new file mode 100755 index 0000000..38b9004 --- /dev/null +++ b/testapp/c_cpp_files/main_array_check.cpp @@ -0,0 +1,34 @@ +#include +#include + +extern bool array_check(int [], int); + +template + +void check(T expect,T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + int a[] = {1,2,3,0,0}; + result = array_check(a, 2); + printf("Input submitted to the function: {1, 2, 3, 0, 0} and index 2"); + check(false, result); + int b[] = {1,2,3,4,5}; + result = array_check(b, 3); + printf("Input submitted to the function: {1, 2, 3, 4, 5} and index 3"); + check(true, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_array_check_all.cpp b/testapp/c_cpp_files/main_array_check_all.cpp new file mode 100755 index 0000000..fc740a9 --- /dev/null +++ b/testapp/c_cpp_files/main_array_check_all.cpp @@ -0,0 +1,34 @@ +#include +#include + +extern bool array_check_all(int []); + +template + +void check(T expect,T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + int a[] = {1,2,3,2,8}; + result = array_check_all(a); + printf("Input submitted to the function: {1, 2, 3, 2, 8}"); + check(false, result); + int b[] = {4,2,32,4,56}; + result = array_check_all(b); + printf("Input submitted to the function: {4, 2, 32, 4, 56}"); + check(true, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_check_digit.cpp b/testapp/c_cpp_files/main_check_digit.cpp new file mode 100755 index 0000000..80a92aa --- /dev/null +++ b/testapp/c_cpp_files/main_check_digit.cpp @@ -0,0 +1,32 @@ +#include +#include + +extern bool check_digit(int, int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + result = check_digit(12, 23); + printf("Input submitted to the function: 12, 23"); + check(true, result); + result = check_digit(22, 11); + printf("Input submitted to the function: 121"); + check(false, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_count667.cpp b/testapp/c_cpp_files/main_count667.cpp new file mode 100755 index 0000000..dc33ede --- /dev/null +++ b/testapp/c_cpp_files/main_count667.cpp @@ -0,0 +1,42 @@ +#include +#include + +extern int count667(int[]); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + int arr[5] = {2,6,4,5,6}; + result = count667(arr); + printf("Input submitted to the function: [2, 6, 4, 5,6]"); + check(0, result); + int arr2[5] = {6,6,2,17,9}; + result = count667(arr2); + printf("Input submitted to the function: [6, 6, 2, 17, 9]"); + check(1, result); + int arr3[5] = {6,6,6,7,1}; + result = count667(arr3); + printf("Input submitted to the function: [6, 6, 7, 2, 1]"); + check(3, result); + int arr4[5] = {6,7,7,6,6}; + result = count667(arr4); + printf("Input submitted to the function: [6, 7, 7, 6, 6]"); + check(2, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_count7.cpp b/testapp/c_cpp_files/main_count7.cpp new file mode 100755 index 0000000..92971fd --- /dev/null +++ b/testapp/c_cpp_files/main_count7.cpp @@ -0,0 +1,42 @@ +#include +#include + +extern int count7(int[]); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + int arr[4] = {2,3,4,5}; + result = count7(arr); + printf("Input submitted to the function: [2, 3, 4, 5]"); + check(0, result); + int arr2[4] = {1,2,17,9}; + result = count7(arr2); + printf("Input submitted to the function: [1, 2, 17, 9]"); + check(0, result); + int arr3[4] = {7,9,2,1}; + result = count7(arr3); + printf("Input submitted to the function: [7, 9, 2, 1]"); + check(1, result); + int arr4[4] = {1,7,7,7}; + result = count7(arr4); + printf("Input submitted to the function: [1, 7, 7, 7]"); + check(3, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_mean.cpp b/testapp/c_cpp_files/main_mean.cpp new file mode 100755 index 0000000..f23db68 --- /dev/null +++ b/testapp/c_cpp_files/main_mean.cpp @@ -0,0 +1,38 @@ +#include +#include + +extern bool mean(int, int , int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + 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"); + check(true, result); + result = mean(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"); + check(false, result); + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_roundTo10.cpp b/testapp/c_cpp_files/main_roundTo10.cpp new file mode 100755 index 0000000..0a1284e --- /dev/null +++ b/testapp/c_cpp_files/main_roundTo10.cpp @@ -0,0 +1,42 @@ +#include +#include + +extern int roundTo10(int,int,int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + result = roundTo10(10, 22, 39); + printf("Input submitted to the function: 10, 22, 39"); + check(70, result); + result = roundTo10(45, 42, 39); + printf("Input submitted to the function: 45, 42, 39"); + check(130, result); + result = roundTo10(7, 3, 9); + printf("Input submitted to the function: 7, 3, 9"); + check(20, result); + result = roundTo10(1, 2, 3); + printf("Input submitted to the function: 1, 2, 3"); + check(0, result); + result = roundTo10(30, 40, 50); + printf("Input submitted to the function: 30, 40, 50"); + check(120, result); + + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_specialSum.cpp b/testapp/c_cpp_files/main_specialSum.cpp new file mode 100755 index 0000000..5d0fcae --- /dev/null +++ b/testapp/c_cpp_files/main_specialSum.cpp @@ -0,0 +1,42 @@ +#include +#include + +extern int specialSum(int,int,int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + int result; + result = specialSum(10, 2, 9); + printf("Input submitted to the function: 10, 2, 9"); + check(21, result); + result = specialSum(1, 21, 9); + printf("Input submitted to the function: 1, 21, 9"); + check(1, result); + result = specialSum(21, 2, 3); + printf("Input submitted to the function: 21, 2, 3"); + check(0, result); + result = specialSum(10, 2, 21); + printf("Input submitted to the function: 10, 2, 21"); + check(12, result); + result = specialSum(10, 2, 6); + printf("Input submitted to the function: 10, 2, 6"); + check(18, result); + + printf("All Correct\n"); + return 0; +} diff --git a/testapp/c_cpp_files/main_within.cpp b/testapp/c_cpp_files/main_within.cpp new file mode 100755 index 0000000..d83c50d --- /dev/null +++ b/testapp/c_cpp_files/main_within.cpp @@ -0,0 +1,38 @@ +#include +#include + +extern bool within(int, int, int); + +template + +void check(T expect, T result) +{ + if (expect == result) + { + printf("\nCorrect:\n Expected %d got %d \n",expect,result); + } + else + { + printf("\nIncorrect:\n Expected %d got %d \n",expect,result); + exit (1); + } +} + +int main(void) +{ + bool result; + result = within(12, 3, 20); + printf("Input submitted to the function: 12, 3, 20"); + check(true, result); + result = within(12, 13, 20); + printf("Input submitted to the function: 12, 13, 20"); + check(false, result); + result = within(29, 13, 120); + printf("Input submitted to the function: 29, 13, 120"); + check(true, result); + result = within(12, 12, 20); + printf("Input submitted to the function: 12, 3, 20"); + check(false, result); + printf("All Correct\n"); + return 0; +} -- cgit From e84e28166b085781c69326ae4feb936d3f6a9ded Mon Sep 17 00:00:00 2001 From: prathamesh Date: Thu, 5 Jun 2014 15:08:55 +0530 Subject: main files indented. comments removed from views file --- testapp/c_cpp_files/main_array_check.cpp | 8 ++++---- testapp/c_cpp_files/main_array_check_all.cpp | 8 ++++---- testapp/c_cpp_files/main_blackJack.cpp | 18 +++++++++--------- testapp/c_cpp_files/main_check_digit.cpp | 4 ++-- testapp/c_cpp_files/main_count667.cpp | 18 +++++++++--------- testapp/c_cpp_files/main_count7.cpp | 18 +++++++++--------- testapp/c_cpp_files/main_lessThan9.cpp | 8 ++++---- testapp/c_cpp_files/main_mean.cpp | 10 +++++----- testapp/c_cpp_files/main_roundTo10.cpp | 19 +++++++++---------- testapp/c_cpp_files/main_specialSum.cpp | 19 +++++++++---------- testapp/c_cpp_files/main_within.cpp | 14 +++++++------- 11 files changed, 71 insertions(+), 73 deletions(-) (limited to 'testapp/c_cpp_files') diff --git a/testapp/c_cpp_files/main_array_check.cpp b/testapp/c_cpp_files/main_array_check.cpp index 38b9004..ea34fdd 100755 --- a/testapp/c_cpp_files/main_array_check.cpp +++ b/testapp/c_cpp_files/main_array_check.cpp @@ -21,13 +21,13 @@ void check(T expect,T result) int main(void) { bool result; - int a[] = {1,2,3,0,0}; + int a[] = {1,2,3,0,0}; result = array_check(a, 2); - printf("Input submitted to the function: {1, 2, 3, 0, 0} and index 2"); + printf("Input submitted to the function: {1, 2, 3, 0, 0} and index 2"); check(false, result); int b[] = {1,2,3,4,5}; - result = array_check(b, 3); - printf("Input submitted to the function: {1, 2, 3, 4, 5} and index 3"); + result = array_check(b, 3); + printf("Input submitted to the function: {1, 2, 3, 4, 5} and index 3"); check(true, result); printf("All Correct\n"); return 0; diff --git a/testapp/c_cpp_files/main_array_check_all.cpp b/testapp/c_cpp_files/main_array_check_all.cpp index fc740a9..140578e 100755 --- a/testapp/c_cpp_files/main_array_check_all.cpp +++ b/testapp/c_cpp_files/main_array_check_all.cpp @@ -21,13 +21,13 @@ void check(T expect,T result) int main(void) { bool result; - int a[] = {1,2,3,2,8}; + int a[] = {1,2,3,2,8}; result = array_check_all(a); - printf("Input submitted to the function: {1, 2, 3, 2, 8}"); + printf("Input submitted to the function: {1, 2, 3, 2, 8}"); check(false, result); int b[] = {4,2,32,4,56}; - result = array_check_all(b); - printf("Input submitted to the function: {4, 2, 32, 4, 56}"); + result = array_check_all(b); + printf("Input submitted to the function: {4, 2, 32, 4, 56}"); check(true, result); printf("All Correct\n"); return 0; diff --git a/testapp/c_cpp_files/main_blackJack.cpp b/testapp/c_cpp_files/main_blackJack.cpp index e4f0963..cc54e78 100755 --- a/testapp/c_cpp_files/main_blackJack.cpp +++ b/testapp/c_cpp_files/main_blackJack.cpp @@ -22,20 +22,20 @@ int main(void) { int result; result = blackJack(11, 12); - printf("Input submitted to the function: 11, 12"); + printf("Input submitted to the function: 11, 12"); check(12, result); result = blackJack(15, 19); - printf("Input submitted to the function: 15, 19"); + printf("Input submitted to the function: 15, 19"); check(19, result); result = blackJack(10, 21); - printf("Input submitted to the function: 10, 21"); + printf("Input submitted to the function: 10, 21"); check(21, result); - result = blackJack(31, 22); - printf("Input submitted to the function: 31, 22"); - check(0, result); - result = blackJack(91, 61); - printf("Input submitted to the function: 91, 61"); - check(0, result); + result = blackJack(31, 22); + printf("Input submitted to the function: 31, 22"); + check(0, result); + result = blackJack(91, 61); + printf("Input submitted to the function: 91, 61"); + check(0, result); printf("All Correct\n"); return 0; } diff --git a/testapp/c_cpp_files/main_check_digit.cpp b/testapp/c_cpp_files/main_check_digit.cpp index 80a92aa..d3bf3d6 100755 --- a/testapp/c_cpp_files/main_check_digit.cpp +++ b/testapp/c_cpp_files/main_check_digit.cpp @@ -22,10 +22,10 @@ int main(void) { bool result; result = check_digit(12, 23); - printf("Input submitted to the function: 12, 23"); + printf("Input submitted to the function: 12, 23"); check(true, result); result = check_digit(22, 11); - printf("Input submitted to the function: 121"); + printf("Input submitted to the function: 121"); check(false, result); printf("All Correct\n"); return 0; diff --git a/testapp/c_cpp_files/main_count667.cpp b/testapp/c_cpp_files/main_count667.cpp index dc33ede..f146e8c 100755 --- a/testapp/c_cpp_files/main_count667.cpp +++ b/testapp/c_cpp_files/main_count667.cpp @@ -21,22 +21,22 @@ void check(T expect, T result) int main(void) { int result; - int arr[5] = {2,6,4,5,6}; + int arr[5] = {2,6,4,5,6}; result = count667(arr); - printf("Input submitted to the function: [2, 6, 4, 5,6]"); + printf("Input submitted to the function: [2, 6, 4, 5,6]"); check(0, result); - int arr2[5] = {6,6,2,17,9}; + int arr2[5] = {6,6,2,17,9}; result = count667(arr2); - printf("Input submitted to the function: [6, 6, 2, 17, 9]"); + printf("Input submitted to the function: [6, 6, 2, 17, 9]"); check(1, result); - int arr3[5] = {6,6,6,7,1}; + int arr3[5] = {6,6,6,7,1}; result = count667(arr3); - printf("Input submitted to the function: [6, 6, 7, 2, 1]"); + printf("Input submitted to the function: [6, 6, 7, 2, 1]"); check(3, result); - int arr4[5] = {6,7,7,6,6}; + int arr4[5] = {6,7,7,6,6}; result = count667(arr4); - printf("Input submitted to the function: [6, 7, 7, 6, 6]"); + printf("Input submitted to the function: [6, 7, 7, 6, 6]"); check(2, result); - printf("All Correct\n"); + printf("All Correct\n"); return 0; } diff --git a/testapp/c_cpp_files/main_count7.cpp b/testapp/c_cpp_files/main_count7.cpp index 92971fd..982e930 100755 --- a/testapp/c_cpp_files/main_count7.cpp +++ b/testapp/c_cpp_files/main_count7.cpp @@ -21,22 +21,22 @@ void check(T expect, T result) int main(void) { int result; - int arr[4] = {2,3,4,5}; + int arr[4] = {2,3,4,5}; result = count7(arr); - printf("Input submitted to the function: [2, 3, 4, 5]"); + printf("Input submitted to the function: [2, 3, 4, 5]"); check(0, result); - int arr2[4] = {1,2,17,9}; + int arr2[4] = {1,2,17,9}; result = count7(arr2); - printf("Input submitted to the function: [1, 2, 17, 9]"); + printf("Input submitted to the function: [1, 2, 17, 9]"); check(0, result); - int arr3[4] = {7,9,2,1}; + int arr3[4] = {7,9,2,1}; result = count7(arr3); - printf("Input submitted to the function: [7, 9, 2, 1]"); + printf("Input submitted to the function: [7, 9, 2, 1]"); check(1, result); - int arr4[4] = {1,7,7,7}; + int arr4[4] = {1,7,7,7}; result = count7(arr4); - printf("Input submitted to the function: [1, 7, 7, 7]"); + printf("Input submitted to the function: [1, 7, 7, 7]"); check(3, result); - printf("All Correct\n"); + printf("All Correct\n"); return 0; } diff --git a/testapp/c_cpp_files/main_lessThan9.cpp b/testapp/c_cpp_files/main_lessThan9.cpp index 1a89731..722b4bb 100755 --- a/testapp/c_cpp_files/main_lessThan9.cpp +++ b/testapp/c_cpp_files/main_lessThan9.cpp @@ -22,16 +22,16 @@ int main(void) { bool result; result = lessThan9(10); - printf("Input submitted to the function: 10"); + printf("Input submitted to the function: 10"); check(false, result); result = lessThan9(17); - printf("Input submitted to the function: 17"); + printf("Input submitted to the function: 17"); check(true, result); result = lessThan9(16); - printf("Input submitted to the function: 16"); + printf("Input submitted to the function: 16"); check(true, result); result = lessThan9(15); - printf("Input submitted to the function: 15"); + printf("Input submitted to the function: 15"); check(false, result); printf("All Correct\n"); return 0; 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; diff --git a/testapp/c_cpp_files/main_roundTo10.cpp b/testapp/c_cpp_files/main_roundTo10.cpp index 0a1284e..12c961d 100755 --- a/testapp/c_cpp_files/main_roundTo10.cpp +++ b/testapp/c_cpp_files/main_roundTo10.cpp @@ -22,21 +22,20 @@ int main(void) { int result; result = roundTo10(10, 22, 39); - printf("Input submitted to the function: 10, 22, 39"); + printf("Input submitted to the function: 10, 22, 39"); check(70, result); result = roundTo10(45, 42, 39); - printf("Input submitted to the function: 45, 42, 39"); + printf("Input submitted to the function: 45, 42, 39"); check(130, result); - result = roundTo10(7, 3, 9); - printf("Input submitted to the function: 7, 3, 9"); + result = roundTo10(7, 3, 9); + printf("Input submitted to the function: 7, 3, 9"); check(20, result); - result = roundTo10(1, 2, 3); - printf("Input submitted to the function: 1, 2, 3"); + result = roundTo10(1, 2, 3); + printf("Input submitted to the function: 1, 2, 3"); check(0, result); - result = roundTo10(30, 40, 50); - printf("Input submitted to the function: 30, 40, 50"); + result = roundTo10(30, 40, 50); + printf("Input submitted to the function: 30, 40, 50"); check(120, result); - - printf("All Correct\n"); + printf("All Correct\n"); return 0; } diff --git a/testapp/c_cpp_files/main_specialSum.cpp b/testapp/c_cpp_files/main_specialSum.cpp index 5d0fcae..d614536 100755 --- a/testapp/c_cpp_files/main_specialSum.cpp +++ b/testapp/c_cpp_files/main_specialSum.cpp @@ -22,21 +22,20 @@ int main(void) { int result; result = specialSum(10, 2, 9); - printf("Input submitted to the function: 10, 2, 9"); + printf("Input submitted to the function: 10, 2, 9"); check(21, result); result = specialSum(1, 21, 9); - printf("Input submitted to the function: 1, 21, 9"); + printf("Input submitted to the function: 1, 21, 9"); check(1, result); - result = specialSum(21, 2, 3); - printf("Input submitted to the function: 21, 2, 3"); + result = specialSum(21, 2, 3); + printf("Input submitted to the function: 21, 2, 3"); check(0, result); - result = specialSum(10, 2, 21); - printf("Input submitted to the function: 10, 2, 21"); + result = specialSum(10, 2, 21); + printf("Input submitted to the function: 10, 2, 21"); check(12, result); - result = specialSum(10, 2, 6); - printf("Input submitted to the function: 10, 2, 6"); + result = specialSum(10, 2, 6); + printf("Input submitted to the function: 10, 2, 6"); check(18, result); - - printf("All Correct\n"); + printf("All Correct\n"); return 0; } diff --git a/testapp/c_cpp_files/main_within.cpp b/testapp/c_cpp_files/main_within.cpp index d83c50d..50f9ad0 100755 --- a/testapp/c_cpp_files/main_within.cpp +++ b/testapp/c_cpp_files/main_within.cpp @@ -22,16 +22,16 @@ int main(void) { bool result; result = within(12, 3, 20); - printf("Input submitted to the function: 12, 3, 20"); + printf("Input submitted to the function: 12, 3, 20"); check(true, result); - result = within(12, 13, 20); - printf("Input submitted to the function: 12, 13, 20"); + result = within(12, 13, 20); + printf("Input submitted to the function: 12, 13, 20"); check(false, result); - result = within(29, 13, 120); - printf("Input submitted to the function: 29, 13, 120"); + result = within(29, 13, 120); + printf("Input submitted to the function: 29, 13, 120"); check(true, result); - result = within(12, 12, 20); - printf("Input submitted to the function: 12, 3, 20"); + result = within(12, 12, 20); + printf("Input submitted to the function: 12, 3, 20"); check(false, result); printf("All Correct\n"); return 0; -- cgit