牛客861440576号
牛客861440576号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客861440576号的博客
全部文章
(共39篇)
题解 | #n的阶乘#
#include "cstdio" int main() { int n; scanf("%d", &n); long long result = 1; while (n > 0) { result *= n; --n; ...
2023-02-24
0
220
题解 | #简单计算器#
#include "string" #include "cstdio" #include "stack" #include "map" using namespace std; // 描述 // 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。 //输入描述:...
2023-02-24
0
398
题解 | #简单计算器#
// 描述 // 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值。 //输入描述: // 测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运算符之间用一个空格分隔。 // 没有非法表达式。当一行中只有0时输入结束,相应的结果...
2023-02-24
0
291
题解 | #Zero-complexity
#include "cstdio" #include "stack" #include "vector" #include "queue" #include "algorithm" using namespace std; bool comp_(int a, int b) { retur...
2023-02-23
0
257
题解 | #Zero-complexity
#include "cstdio" using namespace std; int main() { int n; scanf("%d", &n); long long int arr[n]; for (int i = 0; i < n; ++i) { ...
2023-02-23
0
201
题解 | #完数VS盈数#
/* 描述 一个数如果恰好等于它的各因子(该数本身除外)子和,如:6=3+2+1。 则称其为“完数”;若因子之和大于该数,则称其为“盈数”。 求出2到60之间所有“完数”和“盈数”。 输入描述: 题目没有任何输入。 输出描述: 输出2到60之间所有“完数”和“盈数”, 并以如下形式输出: E:...
2023-02-22
0
330
题解 | #字母统计#数组+哈希
#include "cstdio" #include "string" #include "string.h" using namespace std; /* 描述 输入一行字符串,计算其中A-Z大写字母出现的次数 输入描述: 案例可能有多组,每个案例输入为一行字符串。 输出描述: 对每个案例按A...
2023-02-22
0
314
题解 | #统计字符#
#include "cstdio" //#include "cstring" #include "string.h" #include "string" using namespace std; int main() { char buf[1024]; while (fgets(...
2023-02-22
0
302
题解 | #简单密码#
#include "cstdio" #include "strings.h" #include "string" #include "string.h" using namespace std; int main() { char buf[201]; while (scanf("...
2023-02-22
0
270
题解 | #密码翻译#
/* 描述 在情报传递过程中,为了防止情报被截获,往往需要对情报用一定的方式加密,简单的加密算法虽然不足以完全避免情报被破译, 但仍然能防止情报被轻易的识别。我们给出一种最简的的加密方法,对给定的一个字符串,把其中从a-y,A-Y的字母用其后继字母替代, 把z和Z用a和A替代,则可得到一个简单的...
2023-02-22
0
430
首页
上一页
1
2
3
4
下一页
末页