|
@ -1,16 +1,20 @@ |
|
|
#include "calculatorGetUserInputFactorial.h" |
|
|
#include "calculatorGetUserInputFactorial.h" |
|
|
int allowWhen() |
|
|
|
|
|
|
|
|
// Note: |
|
|
|
|
|
/* This Function may or may not be implemented in actual program, even if it is merged to the main branch. |
|
|
|
|
|
If it is temporarily not included in the main Program, then this has a role in future Development of the Project */ |
|
|
|
|
|
|
|
|
|
|
|
int allowWhen()// int allowWhen() is helpful for indirectly unittesting void calculatorGetUserInputFactorial() |
|
|
{ |
|
|
{ |
|
|
if(q == 1) |
|
|
|
|
|
|
|
|
if(utc == 1) |
|
|
return 1; |
|
|
return 1; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void calculatorGetUserInputFactorial(int *z) |
|
|
|
|
|
|
|
|
void calculatorGetUserInputFactorial(int *num) |
|
|
{ |
|
|
{ |
|
|
if(allowWhen() == 1) |
|
|
|
|
|
|
|
|
if(allowWhen() == 1)//Only when int allowWhen() returns 1, void calculatorGetUserInputFactorial() will display desired Output |
|
|
{ |
|
|
{ |
|
|
printf("num: "); |
|
|
printf("num: "); |
|
|
scanf("%d", z); |
|
|
|
|
|
|
|
|
scanf("%d", num); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|