牛风飞扬
牛风飞扬
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛风飞扬的博客
全部文章
(共2篇)
题解 | #字符串反转#
#include #include #include #include using namespace std; void downChar(string str2){ for(int i;i<str2.size();i++){ if(str2[i]>='A'&&str...
C++
2021-11-20
0
360
题解 | #2021-04-05荣耀机考&数组排序#
题目描述:输入多个数字,按数字从小到大排序。 输入描述:保证都在int范围内,用空格隔开。 输出描述:从小到大的值,有空格隔开,最后一个数字后不加空格。 输入样例:15 2 4 8 7 9 3 输出样例: 2 3 4 7 8 9 15 #include<iostream> #includ...
C++
数组
字符串
2021-11-13
2
1516