1.
#include <iostream> using namespace std; void func(int i=0) { cout<<i<<endl; } int main() { func(3); return 0; }
输出:3