代码拉取完成,页面将自动刷新
https://www.nowcoder.com/practice/8ef655edf42d4e08b44be4d777edbf43?tpId=37&&tqId=21276&rp=1&ru=/activity/oj&qru=/ta/huawei/question-ranking
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int n=0;
while(cin>>n)
{
int resultNum=-1;
int arr[]={4, 2, 3, 2};
if(n>2)
{
resultNum = arr[(n-2)%4];
}
cout<<resultNum<<endl;
}
return 0;
}
https://www.nowcoder.com/questionTerminal/a35ce98431874e3a820dbe4b2d0508b1
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
char ch;
getline(cin, s);
ch = getchar();
if('a'<=ch && ch<='z')
{
ch-=32;
}
int count=0;
for(auto c:s)
{
if('a'<=c && c<='z')
{
c-=32;
}
if(c==ch)
{
++count;
}
}
cout<<count<<endl;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。