小黑狼1号
小黑狼1号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小黑狼1号的博客
全部文章
(共24篇)
题解 | #买房子#
#include <iostream> using namespace std; int main() { int n,k; while (cin >> n>> k) { int num=1; //记录第几年 i...
2024-03-03
0
261
题解 | #打印极值点下标#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ int a[n]; for(int i=0;i<n;i++){ ci...
2024-02-27
0
217
题解 | #与7无关的数#
#include <cmath> #include <iostream> #include <math.h> using namespace std; int main() { int n; while (cin >> n) { //...
2024-02-24
0
201
题解 | #谁是你的潜在朋友#
#include <iostream> using namespace std; int main() { int n, m; cin>>n>>m; int booknum[n]; for(int i=0;i<n;i++){...
2024-02-03
0
163
题解 | #查找学生信息#
#include <cstdio> #include <iostream> #include <string> #include <algorithm> using namespace std; struct student{ string ...
2024-02-02
0
218
题解 | #今年的第几天?#
#include <cstdio> #include <iostream> using namespace std; int flag=0; //标志闰年 int moth(int M,int flag){ int num; if(M==1||M==3||...
2024-01-24
0
227
题解 | #修改报名名单#
entry_form='Niuniu','Niumei' print(entry_form) try: entry_form[1]='Niukele' except: print('The entry form cannot be modifi...
2022-08-09
0
239
题解 | #菜品的价格#
menu=input() menu=str(menu) if menu=='pizza': print(10) elif menu=='rice': print(2) elif menu=='yogurt': pri...
2022-08-05
0
320
题解 | #字符串之间的比较#
s1=input() s2=input() print(s1==s2) print(s1.lower()==s2.lower())
Python3
2022-07-30
9
452
题解 | #不低于与不超过#
k,x,y=input().split() print(k<=x) print(k>=y)
2022-07-30
0
221
首页
上一页
1
2
3
下一页
末页