[编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,temp,swapnum; vect…… 题解列表 2022年05月10日 0 点赞 0 评论 296 浏览 评分:0.0
[编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;float delta_func(float a,float b,float c){…… 题解列表 2022年05月10日 0 点赞 0 评论 279 浏览 评分:0.0
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月10日 0 点赞 0 评论 292 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ getline(cin…… 题解列表 2022年05月10日 0 点赞 0 评论 260 浏览 评分:0.0
二级C语言-计负均正 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(…… 题解列表 2022年05月10日 0 点赞 0 评论 310 浏览 评分:0.0
1196: 去掉空格 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(…… 题解列表 2022年05月10日 0 点赞 0 评论 278 浏览 评分:0.0
自定义函数之字符提取 摘要:#include #include void aa(); void main() { aa(); } void aa() { char a[100],b[1…… 题解列表 2022年05月10日 0 点赞 0 评论 300 浏览 评分:0.0
二级C语言-公约公倍 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; for(i…… 题解列表 2022年05月10日 0 点赞 0 评论 306 浏览 评分:0.0
自定义函数之数字分离 摘要:#include int main() { int a,b[4],i; scanf("%d",&a); for(i=0;i=0;i--) { printf("%d ",b[…… 题解列表 2022年05月10日 0 点赞 0 评论 291 浏览 评分:0.0
1006: [编程入门]三个数找最大值 摘要:import java.io.*; import java.util.Arrays; /** * 数据保存在长度为 3 的数组里,然后用 Java Arrays 类提供的排序方法直接排就好…… 题解列表 2022年05月10日 0 点赞 0 评论 319 浏览 评分:0.0