大学C++数据结构书本源代码

时间:2014-02-09 10:56:10
【文件属性】:

文件名称:大学C++数据结构书本源代码

文件大小:277KB

文件格式:RAR

更新时间:2014-02-09 10:56:10

源代码

大学数据结构课本内的源代码 例如:/*------------------------------------- Program to greet its user. Input: The name of the user Output: A personalized greeting -----------------------------------------*/ #include // cin, cout, <<, >> #include // string using namespace std; int main() { cout << "Please enter your first name: "; string firstName; cin >> firstName; cout << "\nWelcome to the world of C++, " << firstName << "!\n"; }


网友评论