题解列表

筛选

整除的尾数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b,i;    for(;;)    {      ……

简单的a+b (C++代码)

摘要:解题思路:注意事项:参考代码:#include "stdafx.h"int main(){ int a, b,c; scanf_s("%d%d",&a,&b); c = a + b; printf("……
优质题解

Manchester-数据结构-链表的基本操作

摘要:解题思路:首先思考一下总思路①:结点定义typedef struct node_{ int data; struct node_* next; }*node,Node;②:声明所需的函数……

统计字符 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>   #include<algorithm>   #include<stdio.h>   #include<map>   #i……