摘要: include <bits/stdc++.h> using namespace std; int n, m, sum, num; int main( ) { cin >> n >> m; for (int i=1;i<=n;i++) { int e; cin >> e; if (num+e>m) { 阅读全文
posted @ 2024-11-07 21:17 浩瀚宇宙星晨 阅读(17) 评论(0) 推荐(0) 编辑
摘要: https://oj.hetao101.com/d/contest_past/p/2069?tid=67076fb1c7a03d8a4628b276 这个思路错了,怎么还给排序上了。 正确解题 这个是不涉及字符串操作的。 这个是第二种做法,会涉及函数操作。 原错误的代码 include <bits/ 阅读全文
posted @ 2024-11-07 14:24 浩瀚宇宙星晨 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 所以要从题目出发,优化代码 思路是: 1、前缀和,算出来累加和。 2、通过tot*2==sum,判断是不是有相等的值。 这个是数学上的优化。 原错误的代码思路 include <bits/stdc++.h> using namespace std; int n; int main( ) { cin 阅读全文
posted @ 2024-11-07 14:20 浩瀚宇宙星晨 阅读(99) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int main( ) { int n=2, m; cin >> m; double sum=1; while (sum<m) { sum+=1*1.0/n; n++; } cout << n-1; retur 阅读全文
posted @ 2024-11-03 12:29 浩瀚宇宙星晨 阅读(10) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int n, a, sum; int main( ) { cin >> n; for (int i=1;i<=n;i++) { cin >> a; sum+=a; } cout << sum << " "; c 阅读全文
posted @ 2024-11-02 21:21 浩瀚宇宙星晨 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1:在C++语⾔中,整型、实数型、字符型、布尔型是不同数据类型,这四种类型的变量间都可以⽐较⼤⼩。 2:C++中,定义变量 int a=5,b=4,c=3 ,则表达式 (a<b<c) 无法运行。 3:IPv4版本的因特网总共有(126 )个A类地址网络。 4:【阿尔法:2279: 【例27.1】 求 阅读全文
posted @ 2024-10-20 15:21 浩瀚宇宙星晨 阅读(4) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int main( ) { char a; cin >> a; cout << " " << a << endl; cout << " " << a << a << a << endl; cout << a < 阅读全文
posted @ 2024-10-19 14:58 浩瀚宇宙星晨 阅读(5) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int main( ) { char a; cin >> a; cout << char(a-32); return 0; } // 反思1: cin >> a; 忘记写了 反思2: +是转为小写字母-是转为大 阅读全文
posted @ 2024-10-19 14:56 浩瀚宇宙星晨 阅读(4) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int n; int main( ) { cin >> n; cout << n/100 << endl; n=n%100; cout << n/50 << endl; n=n%50; cout << n/20 阅读全文
posted @ 2024-10-18 13:38 浩瀚宇宙星晨 阅读(13) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; double z, c, p; int main( ) { cin >> z >> c >> p; cout << z/10020+c/10030+p/100*50; return 0; } 反思:设定的代码块 阅读全文
posted @ 2024-10-18 13:37 浩瀚宇宙星晨 阅读(6) 评论(0) 推荐(0) 编辑