1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
两道编程题23.4.19.cc 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
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;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助