摘要: 特别鸣谢:伯索 与 腾讯会议 阅读全文
posted @ 2022-06-02 20:19 Amy-xue 阅读(101) 评论(0) 推荐(0)
摘要: 网课每日一句 我们所度过的每个平凡的日常,也许就是连续发生的奇迹 阅读全文
posted @ 2022-05-30 09:36 Amy-xue 阅读(1318) 评论(2) 推荐(0)
摘要: Four key characteristics as a part of a framework of wise reasoning intellectual humility, or recognition of the limits of our own knowledge appreciat 阅读全文
posted @ 2022-05-17 20:26 Amy-xue 阅读(366) 评论(0) 推荐(0)
摘要: 自渡。 阅读全文
posted @ 2022-05-16 16:26 Amy-xue 阅读(11) 评论(0) 推荐(0)
摘要: Bezout 定理 exgcd Special Sets Complex Numbers \(C\) 1.Real Numbers \(R\) 1)Quotient->Rational Numbers \(Q\) Natural Numbers \(N\) Zahl(en)->(Germany)In 阅读全文
posted @ 2022-05-15 22:05 Amy-xue 阅读(54) 评论(0) 推荐(0)
摘要: 网课碎片 ClassIn - Empower education online. 阅读全文
posted @ 2022-04-12 12:09 Amy-xue 阅读(387) 评论(1) 推荐(1)
摘要: 阅读全文
posted @ 2022-04-06 17:53 Amy-xue 阅读(25) 评论(0) 推荐(0)
摘要: P1045 点击查看代码 #include<bits/stdc++.h> using namespace std; unsigned long long a[501]={1}; int main(){ int p; cin>>p; cout<<int(p*(log10(2))+1)<<endl; f 阅读全文
posted @ 2022-04-04 22:20 Amy-xue 阅读(68) 评论(0) 推荐(0)
摘要: 高精加 c[i]+=a[i]+b[i]; if(c[i]>=10){ c[i+1]+=1; c[i]-=10; } 高精减 c[i]+=a[i]-b[i]; if(c[i]<0){ c[i+1]-=1; c[i]+=10; } 高精乘 for(int i=1;i<=lena;i++){ for(in 阅读全文
posted @ 2022-04-04 21:33 Amy-xue 阅读(72) 评论(0) 推荐(0)
摘要: P1001 1. #include <iostream> #include <cstdio> using namespace std; int main() { int a,b; cin >> a >> b; cout << a+b; return 0; } 2.LCT #include<iostr 阅读全文
posted @ 2022-04-01 17:43 Amy-xue 阅读(116) 评论(0) 推荐(0)