Eternity_G
Eternity_G
全部文章
PTA
AtCoder/Codeforces(25)
c++(1)
CCF(25)
c语言(5)
java(1)
JAVA的自学之路(31)
LeetCode(5)
switch(1)
《编程谜题》(4)
复变函数与积分变换(2)
头歌(15)
字符串(1)
指针(1)
数据库(4)
数据结构(36)
洛谷(12)
笔记(24)
算法竞赛(12)
链表(2)
队列(1)
归档
标签
去牛客网
登录
/
注册
Eternity_G的博客
全部文章
/ PTA
(共62篇)
2021-5-1【PTA】【 L1-7 整除光棍 (20 分)】
#include<bits/stdc++.h> using namespace std; int main() { int n; char str[1001]; cin>>n; int p=0,now=1,len=0; whil...
2022-04-18
0
326
2021-5-4【PTA】【1004 成绩排名 (20 分)】
#include<bits/stdc++.h> using namespace std; struct stu{ //结构体 string name; string numb; int score; }student[1000]; bool cmp(stu a,stu b...
2022-04-18
0
304
2021-5-5【PTA】【1051 复数乘法 (15 分)】
#include<iostream> #include<cmath> using namespace std; int main(){ double a,ai,b,bi,A,B; cin>>a>>ai>>b>>bi...
2022-04-18
0
279
2021-5-25【PTA】【1056 组合数的和 (15 分)】
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a[100]; int sum=0; for(int i=0;i<n;i++){ ci...
2022-04-18
0
253
2021-07-19【括号匹配】
#include<bits/stdc++.h> using namespace std; stack<char> a; string s; bool cmp(char a,char b){ if(a=='('&&b==')') return tr...
2022-04-18
0
285
2021-8-25【PTA】【每日题解】
换算英尺英寸 (15 分) #include<bits/stdc++.h> using namespace std; int foot,inch; int n; int main(){ cin>>n; double t=n*1.0/30.48; foot=...
2022-04-18
0
278
2021-8-25【PTA】【九连环问题】
九连环是一种流传于山西省的传统民间的智力玩具,由九个圆环相连成串,以解开为胜。 九连环的九个环,一环扣一环地套在钗上。除了第 1 号环可以随时装上或卸下以外,其它环装上或卸下的条件是:在它的前面仅有紧靠它那一个环在钗上。即:当第 1 ~ i−2 号环都不在钗上,第 i−1 号环在钗上,这时可以装上...
2022-04-18
1
759
2021-10-09 【PTA】【乙级】【题解1】
【有问题评论区留言】 1028 人口普查 (20 分) #include <iostream> using namespace std; //1028 人口普查 (20 分) int main() { int n, cnt = 0; cin >>...
2022-04-18
0
301
2021-10-09 【PTA】【乙级】【题解2】
1093 字符串A+B (20 分) //1093 字符串A+B (20 分) #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(0); string ...
2022-04-18
0
272
2021-10-09 【PTA】【乙级】【题解3】
1015 德才论 (25 分) #include<bits/stdc++.h> using namespace std; //1015 德才论 (25 分) struct student{ string id; int de, cai, sum; in...
2022-04-18
0
339
首页
上一页
1
2
3
4
5
6
7
下一页
末页