苏觅云
苏觅云
全部文章
分类
题解(183)
归档
标签
去牛客网
登录
/
注册
苏觅云的博客
全部文章
(共180篇)
题解 | #挑7#
#include <stdio.h> bool containSeven(int n) { while (n > 0) { &nb...
C++
2022-02-24
0
276
题解 | #求小球落地5次后所经历的路程和第5次反弹的高度#
#include <cstdio> using namespace std; int main() { double n; whil...
C++
2022-02-24
0
279
题解 | #高精度整数加法#
while True: try: a = int(input())  ...
Python3
2022-02-23
0
280
题解 | #进制转换#
#include <stdio.h> int main() { char arr[128]; while(EOF != scanf(...
C
2022-02-23
2
406
题解 | #等差数列#
#include <cstdio> int main() { int n; while(EOF != scanf("%d",&nbs...
C++
2022-02-23
0
323
题解 | #自守数#
#include <cstdio> #include <cstring> char arr1[128], arr2[128]; bool isZs(int n) { &n...
C++
2022-02-23
0
308
题解 | #自守数#
#include <cstdio> #include <cstring> char arr1[128], arr2[128]; bool isZs(int n) { &n...
C++
2022-02-23
0
339
题解 | #求最小公倍数#
#include <cstdio> using namespace std; int getGcd(int a, int b) { if(b ==&n...
C++
2022-02-23
0
259
题解 | #句子逆序#
#include <cstdio> #include <cstring> void printString(char *arr, int i, int j) { ...
C++
2022-02-23
0
353
题解 | #最长回文子串#
#include <cstdio> #include <cstring> using namespace std; bool isHw(char *arr, int i, int&nbs...
C++
2022-02-23
0
245
首页
上一页
9
10
11
12
13
14
15
16
17
18
下一页
末页