Advertisement
Guest User

Maximum Number

a guest
May 17th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. double A, B;
  5. scanf("%lf %lf", &A, &B);
  6. if(A>B)
  7. {
  8. printf("There is Large Number : %lf", A);
  9. }
  10. else
  11. {
  12. printf("There is Large Number : %lf", B);
  13. }
  14.  
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement