Using the variables mentioned above write one C input statem
Using the variables mentioned above, write one C++ input statement to read the values of number and signal from the keyboard. No main () program is necessary and comments are optional. Be sure to strike the Enter key before you click on the Save button.
Solution
#include<iostream>
using namespace std;
int main()
{
int number;
double signal;
cout<<\"enter number:\";
cin>>number;
cout<<\"\ enter signal :\";
cin>>signal;
return 0;
}
