1234567891011121314151617181920212223242526272829
#include <iostream> #include <iomanip> #include<cmath> using namespace std; void f1() { int x = 5; f2( x ); cout << x << endl; } void f2( int x ) { x += 5; cout << x << endl; } int main() { f1(); cin.get(); cin.get(); return 0; }
1234567891011121314151617181920212223
void f1(); void f2(int); int main() { f1(); cin.get(); cin.get(); return 0; } void f1() { int x = 5; f2(x); cout << x << endl; } void f2(int x) { x += 5; cout << x << endl; }