标签:return href pac ret 数字 com cpp class 字符
分析
我们可以把字符串中所有数加起来输出,那么到底怎么把一个字符变成一个数字呢。我们只需要减去字符\(0\)就可以了。
详细步骤
string s;
cin>>s;
cout<<s[0]-'0'+s[1]-'0'+s[2]-'0';
CODE
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
cout<<s[0]-'0'+s[1]-'0'+s[2]-'0';
return 0;
}
题解 AT3717 【[ABC081A] Placing Marbles】
标签:return href pac ret 数字 com cpp class 字符
原文地址:https://www.cnblogs.com/tearing/p/12376395.html