Skip to content

Commit

Permalink
Merge pull request seeditsolution#257 from soni-111/patch-1
Browse files Browse the repository at this point in the history
Create greatest number 1
  • Loading branch information
seeditsolution authored Oct 2, 2020
2 parents 6769834 + 6dd3cfd commit 44f4ece
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions greatest number 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#include<stdio.h>
#include<conio.h>
void main()
{

int n1,n2,sum;
clrscr();

printf("\nEnter 1st number : ");
scanf("%d",&n1);

printf("\nEnter 2nd number : ");
scanf("%d",&n2);

if(n1 > n2)
printf("\n1st number is greatest.");
else
printf("\n2nd number is greatest.");

getch();
}

Output :

Enter 1st number : 115
Enter 2nd number : 228
2nd number is greatest.

0 comments on commit 44f4ece

Please sign in to comment.