第一章 C++程式設計基礎(如何撰寫C++程式)
P1.1 p6
讀取使用者姓名並存儲,最後向用戶打招呼。
#include<iostream> // 1
#include<string> //2
using namespace std;//3
int main()
{
string user_name;
cout<<"please enter your first name:";
cin>> user_name;
cout<<'\n'
cout<<"hello,"
<< user_name
<<"welcome,and bye bye...";
return o;
}
1.c++標準的的“輸入輸出庫”名為iostream,其中包含相關整套的class,用於支援對終端和檔案的輸入與輸出。
2.string class 用於儲存資料。
3.using namespace std
4.字元常量分為兩類:一類為可列印字元,如(英文,數字,標點符號),另一種為不可列印字元,如(換行符\n 製表符\t...)字元常量由一組單引號括住。
5.cin,cout的用法見程式碼。
習題1.4 在上題擴充,要求分別輸入使用者的姓和名,並列印使用者的姓和名。
#include<iostream>
#include<string>
using namespace std;
int main()
{
string user_first name,user_last name;
cout<<”hello,please enter your first name”;
cin>>user_first name;
cout<<”hello,please enter your last name”;
cin>>user_last name;
cout<<”hello\n’
<<user_first name
<<’
<<user_last name;
Return 0;
}