Content deleted Content added
Line 93:
===Prompting the user for a complex number===
#include <iostream>
cin >> a;▼
using namespace std;
int main(void)
{
complex<float> a(0,0);
cout << "Enter a complex value\n";
cout <<"a="<< a<<endl;
return 0;
}
==REFERENCE==
|