白细胞计数(OwO) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n; scanf("%d",&n); doubl…… 题解列表 2023年10月14日 0 点赞 0 评论 480 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct DATA{ char Numb[100]; char Name[20]; int sco…… 题解列表 2023年10月14日 0 点赞 0 评论 346 浏览 评分:0.0
用动态规划求解爬楼梯 摘要:解题思路:#include<iostream>using namespace std;int dp[30];//dp数组表示到i阶梯的总的方案数//则第i个可能有i-1上来,或者i-3上来 int m…… 题解列表 2023年10月14日 0 点赞 0 评论 447 浏览 评分:0.0
结构体之成绩统计2(c语言) 摘要:解题思路:用一个整型数组储存每个学生的成绩总分,比较出最高的,再用k记录下标,然后输出注意事项:参考代码:#include<stdio.h>typedef struct DATA{ char N…… 题解列表 2023年10月14日 0 点赞 0 评论 435 浏览 评分: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 评论 424 浏览 评分:0.0
宏定义的练习 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define Division(a,b) (a)%(b)int main(){ int a,b; scanf("%d %d"…… 题解列表 2023年10月15日 0 点赞 0 评论 384 浏览 评分:0.0
宏定义练习之三角形面积 摘要:解题思路:已知三边可用海伦公式注意事项:参考代码:#include<stdio.h>#include<math.h>#define S(x,y,z) ((x)+(y)+(z))/2.0#define …… 题解列表 2023年10月15日 0 点赞 0 评论 326 浏览 评分: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 评论 346 浏览 评分:0.0
1954: 话费计算 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { int n…… 题解列表 2023年10月15日 0 点赞 0 评论 410 浏览 评分:0.0