Dopo la compilazione e quindi il lancio,
i risultati non sono quelli giusti. ecco il sorgente :
#include <iostream>
using namespace std;
int main () {
float it, iw, cw, ct, z, f, k, p, x, y;
it = 0;
iw = 0;
cw= 0;
ct = 0;
z = 0;
f = 0;
k = 1,6;
p = 6,28;
x = 1000;
y = 1000000;
cout << "inserisci il valore della frequenza : ";
cin >> f;
cout<< endl;
cout << " inserisci il valore di z : ";
cin >> z;
cout << endl;
it = (x*z)/(p*f);
iw = (x*k*z)/(p*f);
ct = y/(k*p*f*z);
cw = y/(p*f*z);
cout << " dati finali per la seguente frequenza : " <<endl;
cout << endl;
cout << " frequenza : " << f << endl;
cout<<endl;
cout << " L1 : " << it << endl;
cout<<endl;
cout<< " L2 : " << iw << endl;
cout<<endl;
cout << " C1 + C2 : " << ct << endl;
cout <<endl ;
cout << " C3 + C4 : " << cw << endl;
}