Computer Science, asked by akkukunju9, 3 months ago

please only answer if you know the answer​

Attachments:

Answers

Answered by amourya13
0

Answer:

this program create in C and C++ language

Explanation:

#include<iostream.h>

#include<conio.h>

void main()

{

clrscr() ;

int a, b, c, d, e, f;

cout<<"Enter A number = " ;

cin>>a;

cout<<"Enter B number = ";

cin>>b;

c=a+b;

c=a-b;

c=a/b;

c=a*b;

cout<<" ADDITION ="<<c<<endl;

cout<<" SUBTRACTION ="<<c<<endl;

cout<<" DIVISION ="<<c<<endl;

cout<<" MULTIPLICATION ="<<c<<endl;

getch() ;

}

Similar questions