🐮🐮牛_
🐮🐮牛_
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
🐮🐮牛_的博客
全部文章
(共3篇)
题解 | #字符串排序#
如代码所示 ```#include<iostream> #include<cstring> using namespace std; int main(){ char s1[300],s2[100]; while(scanf("%s %s",&s1,...
C++
2022-01-13
1
497
题解 | #反序输出#
本题需用low,high指针前后夹击字符串数组,在每一次循环的过程中将两字符进行交换即可 #include<stdio.h> #include<cstring> void reverse(char *s){ int low = 0,high = strlen(s)-...
C++
C
2022-01-13
4
453
题解 | #abc#
# 用三重循环暴力穷举即可 ```#include<iostream> using namespace std; int main(){ int a,b,c; for(a=0;a<=9;a++){ for(b = 0;b<=9;b++){ ...
C++
2022-01-09
4
701