编程彭于晏
编程彭于晏
全部文章
分类
归档
标签
去牛客网
登录
/
注册
编程彭于晏的博客
全部文章
(共2篇)
题解 | #堆栈的使用#
#include <stdio.h> int main() { int n,i; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case int shuzu[1000]; ...
2023-08-27
0
248
题解 | #找位置#
#include <stdio.h> #include<math.h> #include<string.h> int main() { char str[100]; while (scanf("%s", str) != EOF) { ...
2023-06-07
2
290