题解列表
[编程入门]自定义函数之字符类型统计
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {……
C语言训练-阶乘和数*
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
const int N = 10;
int a[N];
int main()
{……
呜呜呜终于写出来了。我与链表的爱恨情仇
摘要:解题思路://用到链表的基础用法,链表中节点按照成员排序的话用插入法比较好用。注意事项://第一次写链表题目参考代码:#include <stdio.h>
#include <stdlib.h>
……
1157: 亲和数(C++)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int n;
cin >> n;
while(……
1159: 偶数求和
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int n, m;
while(cin >> n ……
题解 2773: 计算线段长度 math.h头文件
摘要:??解题思路??此题中两点之间存在四种情况:1.两点 X坐标 相同表示为: Xa == Xb解:两点 Y坐标 差值的 绝对值2.两点 Y坐标 相同表示为: Ya == Yb解:两点 X坐标 差值的 绝……
指针/引用练习之交换数字
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int swap(int *a,int *b){ int temp; temp=*a; *a=*b; *b=temp; return ……
1160: 出圈 (vector , 公式法)
摘要:解题思路:Vector注意事项:删除元素的位置在末尾的时候,需要注意初始化为0参考代码:#include#include
using namespace std;
int main()
{
……