整数奇偶排序(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int swap(int* a,int* b){ int temp=*a; *a=*b; *b=temp;}i…… 题解列表 2023年12月16日 0 点赞 0 评论 451 浏览 评分:9.9
2772: 苹果和虫子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double n,x,y; cin>>n>>x…… 题解列表 2023年12月16日 0 点赞 0 评论 253 浏览 评分:9.9
2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x1,y1,x2,y2,x3,y3,a…… 题解列表 2023年12月16日 0 点赞 0 评论 321 浏览 评分:9.9
题解 2922:合影效果(看我看我,易懂) 摘要:```c #include #include #include typedef struct people { char sex[7]; float height; }stu;…… 题解列表 2023年12月16日 0 点赞 0 评论 303 浏览 评分:9.9
编写题解 2997: 梯形面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double e; e=150*2/15*(15…… 题解列表 2023年12月16日 0 点赞 0 评论 740 浏览 评分:9.9
题解 2921: 整数奇偶排序 摘要:```c #include int main() { int arr1[100],arr2[100],arr[100];//arr1存奇数,arr2存偶数 for (int i = …… 题解列表 2023年12月16日 0 点赞 0 评论 455 浏览 评分:9.9
2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; cout<<(char)a;…… 题解列表 2023年12月16日 0 点赞 0 评论 300 浏览 评分:9.9
题解 2917: 奇数单增序列(看过来) 摘要:```c #include #include int main() { int N, a[501] = { 0 }, b[500] = { 0 }; int flag = 0; s…… 题解列表 2023年12月16日 0 点赞 0 评论 417 浏览 评分:9.9
编写题解 2771: 大象喝水 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double h,r,m; cin>>h>>r…… 题解列表 2023年12月16日 0 点赞 0 评论 309 浏览 评分:9.9
2769: 计算并联电阻的阻值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double r1,r2; cin>>r1>>r2;…… 题解列表 2023年12月16日 0 点赞 0 评论 251 浏览 评分:9.9