yeqing2333
yeqing2333
全部文章
分类
归档
标签
去牛客网
登录
/
注册
yeqing2333的博客
全部文章
(共27篇)
题解 | #密码翻译#
#include <bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); //接收包含空格的字符串 for(int i=0;i<s.size();i++){ if(s[i]=...
2024-03-23
0
158
题解 | #查找学生信息#
#include <bits/stdc++.h> using namespace std; struct Student{ string id; string name; string sex; int age; }; Student student[1001]; void ...
2024-03-23
0
155
题解 | #N的阶乘#
#include <bits/stdc++.h> using namespace std; //大数乘法和大数加法 //按照乘法和加法的运算对字符串进行运算 //大数加法 string addString(string a,string b){ int carry=0; //表示进...
2024-03-23
0
182
题解 | #今年的第几天?#
#include <bits/stdc++.h> using namespace std; //每个月的天数 int dayOfMonth[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {...
2024-03-20
0
168
题解 | #守形数#
#include <bits/stdc++.h> using namespace std; bool isShou(int n){ string s1=to_string(n); string s2=to_string(n*n); int len1=s1.size(); int...
2024-03-19
0
197
题解 | #查找#
#include <bits/stdc++.h> using namespace std; bool find(int n,int num[],int x){ for(int i=0;i<n;i++){ if(x==num[i]){ return true; } ...
2024-03-19
0
198
题解 | #找最小数#
#include <bits/stdc++.h> using namespace std; struct Point{ int x; int y; }; int main(){ int n; cin>>n; Point point[n]; int minx=1...
2024-03-19
0
134
题解 | #数字之和#
#include <bits/stdc++.h> using namespace std; int num(int n){ string s=to_string(n); //to_string将整数转为字符串 int sum=0; for(int i=0;i<s.size(...
2024-03-19
0
166
题解 | #三角形的边#
#include <bits/stdc++.h> using namespace std; int minS(int a,int b,int c){ int m=a; if(m>b){ m=b; } if(m>c){ m=c; } return m; } ...
2024-03-19
0
166
题解 | #字符串的反码#
#include <bits/stdc++.h> using namespace std; //如何判断字母大小写 int main(){ char s[81]; cin>>s; int c; for(int i=0;i<strlen(s);i++){ i...
2024-03-19
0
147
首页
上一页
1
2
3
下一页
末页