题解 1147: C语言训练-角谷猜想 摘要: #include using namespace std; int main(){ int a,b=0; cin>>a; while(1…… 题解列表 2023年11月15日 0 点赞 0 评论 207 浏览 评分:9.9
题解 2817: 级数求和 摘要: #include using namespace std; int main(){ int a; double b=0; cin>>a;…… 题解列表 2023年11月15日 0 点赞 0 评论 286 浏览 评分:0.0
计算多项式的值 摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do…… 题解列表 2023年11月15日 0 点赞 0 评论 308 浏览 评分:0.0
1022: [编程入门]筛选N以内的素数 摘要:``` #include using namespace std; int main() { int x; cin>>x; for(int j=2;j…… 题解列表 2023年11月15日 0 点赞 0 评论 249 浏览 评分:0.0
题解 2812: 球弹跳高度的计算 摘要: #include using namespace std; int main(){ double a,b; cin>>a; b=a; …… 题解列表 2023年11月15日 0 点赞 0 评论 327 浏览 评分:0.0
题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long a,b,c; cin>>a>>b…… 题解列表 2023年11月15日 0 点赞 0 评论 347 浏览 评分:0.0
[编程入门]三个数最大值 (c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using std::cout;int main(){ int a,b,c; std::cin>>a>>b>>c; …… 题解列表 2023年11月15日 0 点赞 0 评论 256 浏览 评分:0.0
萌新出品 2998: 电影票 摘要:参考代码:#include<iostream>using namespace std;int main(){ int x; cin >> x; cout << x <<" "<< 10 …… 题解列表 2023年11月15日 0 点赞 1 评论 289 浏览 评分:9.9
题解 3016: 第几项 摘要: #include using namespace std; int main(){ int i=0,a,b,c; cin>>b; for…… 题解列表 2023年11月14日 0 点赞 0 评论 288 浏览 评分:0.0