yeqing2333
yeqing2333
全部文章
分类
归档
标签
去牛客网
登录
/
注册
yeqing2333的博客
全部文章
(共27篇)
题解 | #数组逆置#
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin>>s; int len=s.size(); for(int i=len-1;i>=0;i--){ cout<...
2024-03-19
0
171
题解 | #百万富翁问题#
#include <bits/stdc++.h> using namespace std; long long int coin(int n){ long long int sum=0; for(int i=0;i<n;i++){ sum+=pow(2,i); } ...
2024-03-19
0
212
题解 | #字符串链接#
#include <bits/stdc++.h> using namespace std; //别忘了字符串结束,否则输出脏数据 void MyStract(char dstStr[],char srcStr[]){ int len1=strlen(dstStr); int len2...
2024-03-19
0
167
题解 | #ZOJ#
#include <iostream> #include <string.h> using namespace std; int main(){ string s; while(getline(cin,s)){ int nz=0,no=0,nj=0; for(i...
2024-03-13
0
167
题解 | #加减乘除#
#include <iostream> using namespace std; int jie(int n){ if(n==0||n==1){ return 1; }else{ return n*jie(n-1); } } void math(int a,char b...
2024-03-11
0
161
题解 | #计算一个数的阶乘#
#include <iostream> using namespace std; long long int jiecheng(int n){ //这里写成long long型才正确 if(n==1||n==0){ &...
C++
2022-08-09
0
296
题解 | #重载运算#
class Coordinate(object): def __init__(self,x,y): self.x=x self.y=y  ...
Python3
2022-08-08
1
238
题解 | #菜品的价格#
s=input() d={'pizza':10,'rice':2,'yogurt':5} if s in list(d.keys()): print(d[s]) else: print(8)
Python3
2022-08-07
0
286
题解 | #牛牛的逻辑运算#
x,y=[int(i) for i in input().split()] print(x and y) print(x or y) print(not x) print(not y)
Python3
2022-08-07
3
295
题解 | #谁的数字大#
#原本的代码,写的太复杂了 x,y=input().split() x=int(x) y=int(y) if x>y: print('True') elif x<=y: print('False') if x<y: &...
Python3
2022-08-07
5
374
首页
上一页
1
2
3
下一页
末页