- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string str1="Good morning!";
- char str2[14]="Good morning!";
- cout<<str1<<endl;
- cout<<str2<<endl;
- cout<<str1[0]<<str1[1]<<str1[2]<<str1[3]<<endl;
- cout<<str2[5]<<str2[6]<<str2[7]<<str2[8]<<str2[9]<<str2[10]<<str2[11]<<str2[12]<<str2[13]<<endl;
- system("pause");
- return 0;
- }
複製代碼 |