信息学奥赛一本通T1179-奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef struct student{ int num,c_score…… 题解列表 2023年07月14日 0 点赞 0 评论 735 浏览 评分:9.9
1131(简单c++) 摘要:解题思路:此题无须使用数组;我们首先定义变量:int k,sum; int f1 = 1, f2 = 1;分三种情情况论if (k == 2) { //1 } if (k == 1) …… 题解列表 2023年07月14日 0 点赞 0 评论 408 浏览 评分:9.9
计算么多项式的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n,sum=1; cin>>…… 题解列表 2023年07月14日 0 点赞 0 评论 393 浏览 评分:9.9
题解 2825: 计算多项式的值 摘要:参考代码:#include <bits/stdc++.h> using namespace std; int main() { double x ; int n ; …… 题解列表 2023年07月14日 0 点赞 0 评论 471 浏览 评分:9.9
2825: 计算多项式的值 摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x,a,c = 0;; int n; cin>>…… 题解列表 2023年07月14日 0 点赞 4 评论 324 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int n, i, k = 0, …… 题解列表 2023年07月14日 0 点赞 0 评论 465 浏览 评分:9.9
题解 2833:只因币 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum=0,a=0 ; int n ; cin>>n…… 题解列表 2023年07月14日 0 点赞 0 评论 472 浏览 评分:9.9
编写题解 2749: Hello, World! 摘要:解题思路:1、输出注意事项:1、输出时注意符号不要漏掉参考代码:#include<iostream> using namespace std; int main (){cout<<"Hello, …… 题解列表 2023年07月14日 0 点赞 0 评论 553 浏览 评分:9.9
优质题解 3014: 计算星期几(C语言详细解答) 摘要: #include int main() { char* weekdays[] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thur…… 题解列表 2023年07月14日 1 点赞 2 评论 921 浏览 评分:9.9
3015: 幂的末尾(C语言简单解法) 摘要: #include int main() { int a, b; scanf("%d %d", &a, &b); int result = 1; for (int i =…… 题解列表 2023年07月14日 1 点赞 1 评论 516 浏览 评分:9.9