Skip to content

Commit

Permalink
fixed spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
kuashio committed Oct 27, 2023
1 parent 22941ff commit 353ab11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Ch02/02_03e/CodeDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ int main(){
std::cout << "flag = " << my_flag << std::endl;
my_flag = true;
std::cout << "flag = " << my_flag << std::endl;
std::cout << "a+b = " << a+b << std::endl;
std::cout << "b-a = " << b-a << std::endl;
std::cout << "a + b = " << a + b << std::endl;
std::cout << "b - a = " << b - a << std::endl;
unsigned int positive;
positive = b - a;
std::cout << "b-a (unsigned) = " << positive << std::endl;
std::cout << "b - a (unsigned) = " << positive << std::endl;

std::cout << std::endl << std::endl;
return (0);
Expand Down

0 comments on commit 353ab11

Please sign in to comment.