- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char n1[5]="Fuck";
- char n2[4]={'F','U','C','K'};
- string n3[2]={"Fu","ck"};
- string n4="fuck";
- int a=3;
- char c='8';
- cout<<n1<<endl;
- for(int i=0; i<4; i++)
- cout<<n2[i];
- cout<<endl;
- for(int i=0; i<2; i++)
- cout<<n3[i];
- cout<<endl;
- cout<<n4<<endl;
- cout<<a<<endl;
- cout<<c<<endl;
- system("pause");
- return 0;
- }
複製代碼 |