?? c31.cpp
字號:
// c31.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Card.h"
int main(int argc, char* argv[])
{
Card book1( "Dune", "Frank Herbert", 2 );
Card book2( "The Foundation Trilogy", "Isaac Asimov", 2 );
Card book3( "The Rainbow", "D.H.Lawrence", 1 );
book1.Show();
book2.Show();
book3.Show();
return 0;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -