2903: 不高兴的津津(C语言) 摘要: #include int main() { int a[7][2]; for(int i=0; i…… 题解列表 2023年07月24日 0 点赞 0 评论 263 浏览 评分:0.0
编写题解 2760: 整型与布尔型的转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; scanf("%d",&a); bool …… 题解列表 2023年07月25日 0 点赞 0 评论 442 浏览 评分:0.0
1231: 杨辉三角(C语言) 摘要: #include //计算杨辉三角的值 int calculate_value(int row,int col)//行和列 { if(col==1||row==col) …… 题解列表 2023年07月25日 0 点赞 0 评论 200 浏览 评分:0.0
1059: 二级C语言-等差数列c++ 摘要:##1059: 二级C语言-等差数列 **参考答案:** ```cpp #include using namespace std; int main(){ int n,m=-1,a=0;…… 题解列表 2023年07月25日 0 点赞 0 评论 194 浏览 评分:0.0
阶乘最短最简洁题解; 摘要:解题思路:主要就是公式的运用;注意事项参考代码:#include<stdio.h>double fact(int k);int main(){ int n , i; double num;…… 题解列表 2023年07月26日 0 点赞 0 评论 205 浏览 评分:0.0
目前最简洁易懂示例!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 200int main(){ int n,m,i,num; int arr[N]; scanf("…… 题解列表 2023年07月26日 0 点赞 0 评论 183 浏览 评分:0.0
1065: 二级C语言-最小绝对值 摘要:##1065: 二级C语言-最小绝对值c++实现 **解题思路:** *输入十个数,找出绝对值最小的一个,将它和最后一个交换,其中可以用* **abs** *函数求出绝对值* ```cpp #…… 题解列表 2023年07月26日 0 点赞 0 评论 211 浏览 评分:0.0
数据结构——链表合并 摘要:解题思路:思路:并没有创建三个链表,而是只通过一个链表对数据排序再加入输出时是临时变量的下一个,避免把头指针输出在对数据排序加入时找的temp是位于添加位置的前一个节点,否则插入不了注意事项:参考代码…… 题解列表 2023年07月26日 0 点赞 0 评论 208 浏览 评分:0.0
python第一人 摘要:```python n=int(input()) list1=list(map(int,input().split())) for i in range(n): if list1[i]…… 题解列表 2023年07月27日 0 点赞 0 评论 251 浏览 评分:0.0
2912: 最长平台(C语言) 摘要: #include int main() { int n; scanf("%d",&n); int a[n]; for(int i=0;imax_length) …… 题解列表 2023年07月27日 0 点赞 0 评论 243 浏览 评分:0.0