02 2023 档案

摘要:<!dortype html> <html> <head> <title> 字体 </title> </head> <body> <style> .font h1{ font-family:"草书"; } .font h3{ font-family:"甲骨文"; } .font p{ font-si 阅读全文
posted @ 2023-02-26 09:54 陈若麟 阅读(8) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main(int argc, char** argv) { int n,c; cin>>n; float a,b,x,y; string h[n-1]; cin>>a>>b; x=b/a; for(int i= 阅读全文
posted @ 2023-02-11 19:25 陈若麟 阅读(130) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int n; cin>>n; int a,b,c; int g=0,h=0,j=0; int s; for(int i=0;i<n;i++){ cin>>a>>b>>c; g+=a; h+=b 阅读全文
posted @ 2023-02-11 18:26 陈若麟 阅读(176) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int n; cin>>n; //咳嗽 int a[n]; string name[n]; //温度 float p[n]; //数量 int e=0; for(int i=0;i<n;i++ 阅读全文
posted @ 2023-02-11 18:09 陈若麟 阅读(406) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <string> using namespace std; int main() { int n; cin>>n; int zi=0; string str; for(int i=0;i<n;i++){ cin>>str; for(int g 阅读全文
posted @ 2023-02-10 19:22 陈若麟 阅读(4) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int n; cin>>n; int a; int e=0; for(int i=0;i<n;i++){ cin>>a; e+=a; } float num=e; float g=0.1; i 阅读全文
posted @ 2023-02-03 18:04 陈若麟 阅读(355) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { for(int i=100;i<=999;i++){ int a=i/100; int b=i%10; if(a==b&&i%2!=0&&i%3!=0&&i%5!=0&&i%7!=0&&i%1 阅读全文
posted @ 2023-02-03 16:48 陈若麟 阅读(57) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { int a,b; cin>>a>>b; int c=1; for(int i=0;i<b;i++){ c=c*a; } 阅读全文
posted @ 2023-02-02 17:47 陈若麟 阅读(209) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <iomanip> using namespace std; int main() { int n; float a,b; cin>>n; for(int i=0;i<n;i++){ cin>>a; b+=a; } cout<<b<<" "; 阅读全文
posted @ 2023-02-02 17:07 陈若麟 阅读(89) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <iomanip> using namespace std; int main() { int n; float a,b; cin>>n; for(int i=0;i<n;i++){ cin>>a; b+=a; } printf("%.2f" 阅读全文
posted @ 2023-02-02 16:54 陈若麟 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-02-02 16:53 陈若麟 阅读(9) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int a,b,c,a1,b1,c1,x=1; cin>>a>>b>>c; while(1){ x++; a1=a%x; b1=b%x; c1=c%x; if(a1==b1&&b1==c1){ 阅读全文
posted @ 2023-02-01 18:15 陈若麟 阅读(152) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int m,a,c; int g,s,b,q; cin>>a; for(int i=0;i<a;i++){ cin>>m; q=m/1000; b=(m-1000*q)/100; s=(m-1 阅读全文
posted @ 2023-02-01 17:56 陈若麟 阅读(196) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int j; int n; int m; int a; cin>>m>>n; for(int i=0;i<n;i++){ cin>>a; if(a<=m){ m-=a; }else{ j++; 阅读全文
posted @ 2023-02-01 17:26 陈若麟 阅读(22) 评论(0) 推荐(0) 编辑