📄 main.cpp
字号:
#include <iostream>
#include <stdlib.h>
#include <string>
using namespace std;
int main(int argc, char *argv[])
{
string *phrase = new string("All presidents are cool!!!");
cout << *phrase << endl;
(*phrase)[20] = 'r';
phrase->replace(22, 4, "oked");
cout << *phrase << endl;
delete phrase;
system("PAUSE");
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -