

InterviewSolution
Saved Bookmarks
1. |
Write a program to read value of W, X, Y and Z and displays the value of P, where p= w+x/y_z |
Answer» #include<iostream.h>int main(){int w, x, y, z,p;cout<<"enter 4 numbers ";cin>>w>>x>>y>>z;p=w+x/y-z; cout< | |