题解 2817: 级数求和 摘要: #include using namespace std; int main(){ int a; double b=0; cin>>a;…… 题解列表 2023年11月15日 0 点赞 0 评论 295 浏览 评分:0.0
计算多项式的值 摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do…… 题解列表 2023年11月15日 0 点赞 0 评论 313 浏览 评分:0.0
1022: [编程入门]筛选N以内的素数 摘要:``` #include using namespace std; int main() { int x; cin>>x; for(int j=2;j…… 题解列表 2023年11月15日 0 点赞 0 评论 259 浏览 评分:0.0
题解 2812: 球弹跳高度的计算 摘要: #include using namespace std; int main(){ double a,b; cin>>a; b=a; …… 题解列表 2023年11月15日 0 点赞 0 评论 339 浏览 评分: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 评论 364 浏览 评分:0.0
同行列对角线的格子 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class test2877 { public static void main(String[] arg…… 题解列表 2023年11月15日 0 点赞 0 评论 324 浏览 评分:0.0
换一个高精度的就行 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void main(){ double n,m,s; scanf("%lf%lf",&n,&m); s=n-0.8*m; printf…… 题解列表 2023年11月15日 2 点赞 0 评论 394 浏览 评分:10.0
[编程入门]三个数最大值 (c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using std::cout;int main(){ int a,b,c; std::cin>>a>>b>>c; …… 题解列表 2023年11月15日 0 点赞 0 评论 269 浏览 评分:0.0
函数求解最大公约数与最小公倍数 摘要:### 使用*函数求解*---最大公约数与最小公倍数 ------------ - **1. 写入两个函数,最大公约数函数和最小公倍数函数,然后用主函数调用这两个函数** - **2…… 题解列表 2023年11月15日 0 点赞 0 评论 310 浏览 评分:9.9
C语言训练-字符串正反连接(用指针) 摘要:```c #include int main() { char a[102]; scanf("%s",a); printf("%s",a); char *p=a; while…… 题解列表 2023年11月15日 0 点赞 0 评论 297 浏览 评分:0.0