我是编程大王
我是编程大王
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
我是编程大王的博客
全部文章
(共2篇)
题解 | #字符串操作#
#include<stdio.h> int main() { int n,m; scanf("%d %d",&n,&m); setbuf(stdin, NULL);//使用setbuf(s...
字符串
2022-07-15
0
275
题解 | #简写单词#
由题可知,我们需要把每个单词的首字母找出来把它变成大写的形式输出即可,由输入的格式我们可以发现除了第一个单词外,每个空格的后面就是我们要找的字母。由此思路即可轻松写出我们的代码 #include<stdio.h> #include<string.h> int mai...
字符串
C
2022-07-13
2
412