编写题解 1676: 数据结构-链表的基本操作 摘要:### 使用结构体存数据和地址  ```cpp typedef struct…… 题解列表 2022年10月30日 0 点赞 0 评论 445 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,s; char c; int h=0,k; while((k=scanf…… 题解列表 2022年10月30日 0 点赞 0 评论 353 浏览 评分:0.0
用栈来判断是否回文 摘要:解题思路:先判断是否是回文数,然后再判断之和注意事项: 注意-1的情况参考代码:import java.util.Scanner;import java.util.Stack;public c…… 题解列表 2022年10月30日 0 点赞 0 评论 385 浏览 评分:0.0
题目有漏洞吧 摘要:解题思路:本来还要判断两边之和大于第三边,没想到不用,这是为什么,请问,这样就一定能成为三角形吗?是不是题目有漏洞?注意事项:参考代码:##l=list(map(int,input().split()…… 题解列表 2022年10月30日 0 点赞 0 评论 378 浏览 评分:0.0
懂得都懂写法 摘要:参考代码:#include<iostream>#include<algorithm>#include<cstring>#include<sstream>using namespace std;cons…… 题解列表 2022年10月30日 0 点赞 0 评论 421 浏览 评分:0.0
数组存储求解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n = -1, p[100], j = 0, k = 0, l = 0; do { n++; sca…… 题解列表 2022年10月30日 0 点赞 0 评论 529 浏览 评分:0.0
1057编写分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; float y; scanf("%d",&x); { if(x<1) …… 题解列表 2022年10月30日 0 点赞 0 评论 293 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int m,l,i,c[10086],j,k=0; scanf ("%d %d",&l,&m); …… 题解列表 2022年10月30日 0 点赞 0 评论 309 浏览 评分:0.0
二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,f; scanf("%lf",&x); if…… 题解列表 2022年10月30日 0 点赞 0 评论 323 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int ctof(int c){ int f; f= 32 + c* 9/5; ret…… 题解列表 2022年10月30日 0 点赞 0 评论 295 浏览 评分:0.0