1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<bits/stdc++.h> using namespace std;…… 题解列表 2023年10月15日 0 点赞 0 评论 203 浏览 评分:0.0
1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年10月15日 0 点赞 0 评论 254 浏览 评分:0.0
1953: 三位数分解 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年10月15日 0 点赞 0 评论 181 浏览 评分:0.0
水无月C语言版本 摘要:**题目链接:**[题目 1150: C语言训练-计算t=1+1/2+1/3+...+1/n](https://www.dotcpp.com/oj/problem1150.html) **解题思路:…… 题解列表 2023年10月15日 0 点赞 0 评论 274 浏览 评分:9.9
1954: 话费计算 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年10月15日 0 点赞 0 评论 246 浏览 评分:0.0
宏定义之找最大数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Max(a,b,c) a>b?(a>c?a:(b>c?b:c)):(b>c?b:c) int main(){ fl…… 题解列表 2023年10月15日 0 点赞 0 评论 157 浏览 评分:0.0
宏定义练习之三角形面积 摘要:解题思路:已知三边可用海伦公式注意事项:参考代码:#include<stdio.h>#include<math.h>#define S(x,y,z) ((x)+(y)+(z))/2.0#define …… 题解列表 2023年10月15日 0 点赞 0 评论 170 浏览 评分:0.0
宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Division(a,b) (a)%(b)int main(){ int a,b; scanf("%d %d"…… 题解列表 2023年10月15日 0 点赞 0 评论 185 浏览 评分:0.0
带参数宏定义,交换数值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Swap(x,y,t) (t=x,x=y,y=t) int main(){ int a,b,c; scanf…… 题解列表 2023年10月15日 0 点赞 0 评论 187 浏览 评分:0.0