using namespace std; #include int main () { int n; float pi = 3.1415; float duepi = pi*2; char c = 'C'; cout << "n = " << n << endl; cout << "pi = " << pi << endl; cout << "duepi = " << duepi << endl; cout << "c = " << c << endl; cout << "Dammi n: "; cin >> n; cout << "dammi un nuovo valore per duepi: "; cin >> duepi; cout << "dammi un nuovo valore per c: "; cin >> c; cout << "n = " << n << endl; cout << "pi = " << pi << endl; cout << "duepi = " << duepi << endl; cout << "c = " << c << endl; return 0; }