Division of two numbers using C++


SUBMITTED BY: Nrupeshsinh

DATE: June 21, 2016, 2:15 p.m.

FORMAT: Text only

SIZE: 300 Bytes

HITS: 2023

  1. # include<iostream.h>
  2. # include<conio.h>
  3. void main()
  4. {
  5. int a,b;
  6. clrscr();
  7. cout<<"Enter any value";
  8. cin>>a;
  9. cout<<"Enter any value";
  10. cin>>b;
  11. cout<<Division="<<a/b;
  12. getch();
  13. }

comments powered by Disqus