雒凯璇
雒凯璇
全部文章
题解
归档
标签
去牛客网
登录
/
注册
雒凯璇的博客
全部文章
/ 题解
(共2篇)
题解 | #序列求和#
主要考察遍历和字符类型转换 #include<iostream> using namespace std; int main(){ string s; cin>>s; int sum = 0; for (int i = 0; i<s.le...
C++
2023-10-19
2
256
题解 | #你好,牛客#
本题很简单,注意审题即可,单词不要拼写错误 #include<iostream> using namespace std; int main(){ cout<<"hello nowcoder"<<endl; return 0; }
C++
2023-10-19
1
252