一些程序的整理

1.

#include <iostream>
using namespace std;

void func(int i=0)
{
    cout<<i<<endl;
}

int main()
{
    func(3);
    return 0;
}

 输出:3

posted on 2012-06-11 17:54  铁树银花  阅读(166)  评论(0编辑  收藏  举报

导航