Sunday, 7 April 2013

Division Of two Integers Without \ Operator Program in C++

#include<stdio.h>
#include<conio.h>
#include<iostream.h>
void main()
{
 int a,b,count=0;
 cout<<"division of two inter digits without '/' operator\n";
 cout<<"enter first no=";
 cin>>a;
 cout<<"enter second no=";
 cin>>b;
 a=a-b;
 while(a>=0)
 {
  count++;
  a=a-b;
 }
 cout<<"the result is="<<count;
 getch();
}
Share this post
  • Share to Facebook
  • Share to Twitter
  • Share to Google+
  • Share to Stumble Upon
  • Share to Evernote
  • Share to Blogger
  • Share to Email
  • Share to Yahoo Messenger
  • More...

0 comments:

Post a Comment

:) :)) ;(( :-) =)) ;( ;-( :d :-d @-) :p :o :>) (o) [-( :-? (p) :-s (m) 8-) :-t :-b b-( :-# =p~ $-) (b) (f) x-) (k) (h) (c) cheer
Click to see the code!
To insert emoticon you must added at least one space before the code.