//Read val x,y,z & display value of p = (w+x/0/(y-z)
//Downloaded From www.c4cpp.co.nr. (C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int w,x,y,z;
float p;
cout<<"Enter 4 numbers"<<endl;
cin>>x>>y>>z>>w;
p=(w+x)/(y-z);
cout<<"(w+x)/(y-z) = "<<p;
getch();
}
Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]
Calculation
Click Here To Download C++ File Of This Program
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment