Skip to content

Commit

Permalink
Deleted exe file and some small typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PureJoyMind committed Jul 3, 2021
1 parent 7a515d9 commit 8c8db62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file removed ch.04/4.35.c
Binary file not shown.
4 changes: 2 additions & 2 deletions ch.04/4.35.c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ int main(){
// declaring fraction for the fractional parts
double frct{1};

// using while to calculate e
// using while to calculate e
while ( sum > 0){
// calculating the factorial
// counter for the while loop
Expand All @@ -42,7 +42,7 @@ int main(){
// declaring the final answer
double ans{frct};

// using a counter controlled while loop to calculate the factorial
// using a counter controlled while loop to calculate the factorial
while(counter < frct){
ans *= frct - counter;
counter++;
Expand Down

0 comments on commit 8c8db62

Please sign in to comment.