shenggong
shenggong
全部文章
分类
题解(49)
归档
标签
去牛客网
登录
/
注册
shenggong的博客
全部文章
(共49篇)
题解 | #无法更改的信息#
namelist1 = tuple(input().split(' ')) namelist2 = tuple(input().split(' ')) namelist3 = namelist1[:3] + namelist2[-3:] print(namelist1,namelist2,namel...
2024-06-17
1
142
题解 | #牛妹的烦恼#
list = input().split()num1 = int(list[0])num2 = int(list[1])num3 = int(list[2])if (num1 > nu...
2022-12-02
0
204
题解 | #朋友的年龄和#
list = input().split()print(int(list[0])+int(list[1]))
2022-12-01
0
221
题解 | #SQL类别高难度试卷得分的截断平均值#
SELECT a.tag,a.difficulty,ROUND((SUM(b.score)-MAX(b.score)-Min(b.score))/(COUNT(b.score)-2),1) AS clip_avg_score FROM examination_info a JOIN exam_rec...
Mysql
2022-07-14
0
172
题解 | #类型转换#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = ne...
Java
2022-07-06
0
189
题解 | #密码游戏#
number = input() list = [] for i in range(len(number)): b = (int(number[i])+3)%9 list.append(b) list[0],list[2] = list[2],...
Python3
2022-07-03
4
0
题解 | #kiki算数#
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main{ public static void main(...
Java
2022-07-02
0
193
题解 | #牛牛的线段#
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; public class Main{ public static void main(...
Java
2022-07-01
0
0
题解 | #查看鸢尾花数据基本特征#
import pandas as pd iris = pd.read_csv('iris.csv',sep=',') # code here print(iris.head()) # code here print(iris.shape) # code here print(iris.dtypes....
Python3
2022-06-30
0
222
题解 | #打印字母数小于8的单词#
awk '{for(i=1;i<=NF;i++) if(length($i) <8 ) print $i}' nowcoder.txt
Shell
2022-06-30
0
0
首页
上一页
1
2
3
4
5
下一页
末页