,c++哈希表中的for (auto&c : a)
#include
#include
#include
using namespace std;
int main()
{
string a;
cin >> a;
int cnt = 0;
unordered_set
for (auto&c : a)
{
cnt++;
cout << "cnt=" << cnt << endl;
c ^= 1;
cout << "c^=1:" << endl;
cout <<"c="<< c << endl;
cout << "a=" << a << endl;
c ^= 1;
cout << "c=" << c << endl;
cout << "a=" << a << endl << endl;
}
return 0;
}
输入:123456
输出
auto自动检测a的数据类型;保持c的数据类型与a相同;
不知对错,暂且记下:《c对1取异或,奇数减一,偶数加一》-
共有 0 条评论