题解列表

筛选

删除链表题解方法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct Node { i……

111111111111111111111111111

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

2754基础解法(简短输出)

摘要:解题思路:类比2752,2753,理解使用sizeof函数即可注意事项:C语言(C99 之前)没有内置 bool 类型所以需要在头部添加声明#include <stdbool.h>参考代码……

2752基础解法(简短输出)

摘要:解题思路:题目:分别定义int,short类型的变量各一个,并依次输出它们的存储空间大小(单位:字节)。……

冶炼金属C++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { long long int a[10005],……

1470:时间转换

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t; scanf("%d",&t); int h,m,s; h=……