⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpp06.cpp

📁 C++参考书
💻 CPP
字号:

// Coded by plusir -- Dec.27.2002.
// Stardan C++ Bible -- (P73-3-6)

#include <iostream>
using namespace std ;

void show( int = 1, float = 2.3, long = 4 ) ;

int main()
{
	show() ;
	show( 5 ) ;
	show( 6, 7.8f ) ;
	show( 9, 10.11f, 12l ) ;

	return 0 ;
}

void show( int first, float second, long third )
{
	cout << "first = " << first << endl ;
	cout << "second = " << second << endl ;
	cout << "third = " << third << endl ;
	cout << "------------------" << endl ;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -