【计算球体积】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.1415926int main(){ double x,m,sum; while(scanf("%lf",&x…… 题解列表 2019年04月21日 0 点赞 0 评论 624 浏览 评分:0.0
[编程入门]宏定义练习之三角形面积 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define zz(a,b,c) S=(a+b+c)/2#define hh(a,b,c,S) ar…… 题解列表 2019年04月21日 1 点赞 0 评论 1246 浏览 评分:0.0
三位数分解 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,g,s,b; scanf("%d",&x); b=x/100; s=x/10%10; g=x%10;…… 题解列表 2019年04月21日 0 点赞 0 评论 974 浏览 评分:0.0
C语言训练-亲密数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int sum1,sum2; int A,i,j; for(A=1;…… 题解列表 2019年04月21日 0 点赞 0 评论 676 浏览 评分:0.0
C语言训练-列出最简真分数序列* (C++代码) 摘要:解题思路:注意格式就ok注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for(int i = 1;i < 4…… 题解列表 2019年04月21日 0 点赞 0 评论 639 浏览 评分:0.0
C语言训练-大、小写问题 (C++代码) 摘要:解题思路:简单的大小写转换注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ char str[120]; …… 题解列表 2019年04月21日 0 点赞 0 评论 1094 浏览 评分:0.0
C语言训练-委派任务* (C语言代码) 摘要:解题思路:数学模拟题哦 找到矛盾的条件是解决这类问题最快速的方法 我就偷懒直接输出了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int …… 题解列表 2019年04月21日 0 点赞 0 评论 505 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 633 浏览 评分:0.0
C语言训练-尼科彻斯定理 (C++代码) 摘要:解题思路:直接看样例找规律注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,i; cin>>n…… 题解列表 2019年04月21日 0 点赞 0 评论 568 浏览 评分:0.0
C语言训练-排序问题<1> (C++代码) 摘要:解题思路:sort 排序大法注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a[4]; for(…… 题解列表 2019年04月21日 0 点赞 0 评论 558 浏览 评分:0.0