Skip to content

Commit

Permalink
Merge pull request #2 from ronika-das/ronika-das-large101
Browse files Browse the repository at this point in the history
Update CPP_greatest.cpp
  • Loading branch information
ronika-das authored Nov 17, 2017
2 parents ea5ad69 + 773d694 commit 6c3468a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CPP/CPP_greatest.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#include<iostream.h>
#include<iostream>
using namespace std;
int main()
{
Expand All @@ -12,7 +12,7 @@ if(a>=b && a>=c)
{
cout<<"Largest number: "<<a;
}
else if(b>=a && b>=c)
else if(b>=c)
{
cout<<"Largest number: "<<b;
}
Expand Down

0 comments on commit 6c3468a

Please sign in to comment.