Cx330_Li-Yujia
Cx330 2 years ago
parent 27c103a30f
commit 2f552766ec

@ -0,0 +1,14 @@
## 编写一个666程序
### 输入一个666并用c++语言把字符串“666”变成整型666
```
#include<iostream>
using namespace std;
int main()
{
string s;
cin>>s;
cout<<stoi(s)<<endl;
return 0;
}
```
Loading…
Cancel
Save