rainman_
rainman_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
rainman_的博客
全部文章
(共127篇)
题解 | #不用循环语句的重复输出#字符串可以直接×
import sys str1 = input() print(str1 * 100)
2023-05-02
0
273
题解 | #格式化输出(三)#strip()去点空格
import sys name = input().strip() print(name)
2023-05-02
0
225
题解 | #格式化输出(二)#
import sys # 首字母大写:capitalized() # 每个单词首字母大写:title() name = input() print(name.lower()) print(name.upper()) print(name.title()) 首字母大写:capitalized()每个单...
2023-05-02
0
239
int(num, base)的用法
import sys num16 = input() num = int(num16, 16) print(num)
2023-05-01
0
403
题解 | #牛牛的小数输出#和C语言类似
import sys num = float(input()) print('%.2f' % (num))
2023-05-01
0
238
题解 | #Hello World!#python 第一天。
import sys str = 'Hello World!' print(str)
2023-05-01
0
200
题解 | #计算天数#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-22
0
337
题解 | #最大公约数1#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-22
0
346
题解 | #Problem B#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-22
0
273
题解 | #对称矩阵#
#include <iostream> using namespace std; int arr[105][105]; int main() { int n; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case...
2023-03-22
0
316
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页