![]() |
#2
大头leo2020-08-09 11:50
|
#include<bits/stdc++.h>
using namespace std;
string s;
int main()
{
s[0]='1';
s[1]='0';
for(int i=0;i<s.size();i++)
{
cout<<s[i];
}
}
想要输出字符串s,无法正常输出,求解