题解 3012: 分苹果 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,s=0; cin>>n; fo…… 题解列表 2023年07月10日 0 点赞 0 评论 380 浏览 评分:9.9
余数相同问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2023年07月10日 0 点赞 0 评论 283 浏览 评分:9.9
计算分数加减表达式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double s=0; ci…… 题解列表 2023年07月10日 0 点赞 0 评论 379 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; double p=1,q=2,s…… 题解列表 2023年07月10日 0 点赞 0 评论 409 浏览 评分:0.0
求分数序列和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double s=0,p=1,q=…… 题解列表 2023年07月10日 0 点赞 0 评论 380 浏览 评分:9.9
题解 1001: [编程入门]第一个HelloWorld程序(仅需一行) 摘要:解题思路:在Python中print打印结束后会自动换行(\n),因此只需写三次print即可。其次在Python中可以使用“字符串” * 次数,来表达重复的“字符串”。还有(\n)也是换行的意思。注…… 题解列表 2023年07月10日 1 点赞 0 评论 419 浏览 评分:0.0
统计满足条件的4位数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a,ans=0; cin >>n; …… 题解列表 2023年07月10日 0 点赞 0 评论 326 浏览 评分:9.9
2813: 药房管理 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int m,n,q,ans=0; cin>>m>>n; fo…… 题解列表 2023年07月10日 0 点赞 0 评论 397 浏览 评分:9.9
2814: 正常血压 摘要:注意事项:C++语言,别弄错了参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,b,z=0,maxx=0;…… 题解列表 2023年07月10日 0 点赞 0 评论 546 浏览 评分:6.0
优质题解 [编程入门]利润计算C语言代码 摘要:解题思路:注意事项:1.10w可以写成科学计数法1e5,注意e前面的1不能省略,因为e前必须得有数字2.只有int型变量才可以和1%(即带百分号的数字,比如7.5%啊等等)相乘3.答案要求输出精度为个…… 题解列表 2023年07月10日 0 点赞 0 评论 1127 浏览 评分:0.0