Computer Science, asked by vibhu56789, 1 year ago

how to make divide program in tarbo c++

Answers

Answered by Leukonov
2
if you mean To Divide Two Numbers..

Then i guess...

By C++ Language...

#include <iostream.h>
#include<conio.h>
void main()
{
clrscr()
float a,b
Cout<<" enter the Digits to be divided"
Cin>>a>>b
c=a/b
Cout<<"The result is"<<c
Getch()
}

Hope it helps...
Regards,
Leukonov.
Answered by Anonymous
0
here is ur answer mate.....





To perform addition, subtraction, multiplication and division of any two numbers in C++ Programming, you have to ask to the user to enter the two number and then ask to enter the operator to perform the particular mathematical operation (addition, subtraction, multiplication, and division) and display the result on the screen.

C++ Programming Code for Addition Subtraction Multiplication Division

Following C++ program ask to user to enter the two number and perform addition, subtraction, multiplication and division on the two entered number:



hope this helps u....


plz mark me as brainlist plz plz plz plz plz plz... ♥
Attachments:
Similar questions