超好懂的求一元二次方程 摘要:解题思路:取三个函数来计算三种情况,再一个函数来判断b*b-4*a*b与0的关系进那种情况;注意事项:了解如何计算二元一次方程的根,过程很简单;参考代码:#include<stdio.h>#inclu…… 题解列表 2022年07月17日 0 点赞 0 评论 391 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:定义三个变量来保存数据注意事项:参考代码:#include<bits/stdc++.h>//c++万能头文件using namespace std;int main(){ int n; in…… 题解列表 2022年07月17日 0 点赞 0 评论 383 浏览 评分:0.0
简单1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能头文件using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2022年07月17日 0 点赞 0 评论 577 浏览 评分:0.0
其实就是一个人简单的循环 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int n,a; cin>>n; for(int i=1;;i++) …… 题解列表 2022年07月17日 0 点赞 0 评论 406 浏览 评分:0.0
自定义函数之整数处理(C语言,简单数组) 摘要: #include void enter(int a[10]); void deal(int a[10]); void out(int a[10]);…… 题解列表 2022年07月17日 0 点赞 0 评论 454 浏览 评分:0.0
自定义函数之数字后移(C语言,简单for循环) 摘要: #include void deal(int n, int m, int a[999]); int main() { int n, …… 题解列表 2022年07月17日 0 点赞 0 评论 400 浏览 评分:0.0
1046简简单单 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { int m,n,a[200],i=0,j=0,c=0; sca…… 题解列表 2022年07月17日 0 点赞 0 评论 380 浏览 评分:0.0
挺简单的一个题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n, a,b; cin>>n;…… 题解列表 2022年07月17日 0 点赞 0 评论 416 浏览 评分:0.0
1055: 二级C语言-进制转换(自己编写相关函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int N; int a[100]; int j; scanf("%d",&N); a[0]=N%8; …… 题解列表 2022年07月17日 0 点赞 0 评论 462 浏览 评分:0.0
绝对值排序(C语言) 摘要: #include int main() { int i, a[101], n; while(scanf("%d", &n)!=EOF) { fo…… 题解列表 2022年07月18日 0 点赞 0 评论 537 浏览 评分:0.0