题解列表
简易代码(C)望空破茧
摘要:解题思路:输入一个正整数n (1≤ n ≤6),再输入一个n 行n列的矩阵,找出该矩阵中绝对值最大的元素以及它的行下标和列下标。注意事项: int n; ……
链表的基本操作,1676
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Node{ int data; struct No……
链表的基本操作,1676
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Node{ int data; struct No……
编写题解 2549: 单词统计 为数不多的c++
摘要:```cpp
#include
using namespace std;
int main()
{
string s1,s2;
int n,m,i,j,cnt=0,pos=0;
c……
1733: 堆栈的使用 答案太少,凑数的
摘要:```cpp
#include
using namespace std;
int main()
{
int n;
while(cin >> n)
{
……
1402: 简单的字符串
摘要:#include<stdio.h>
#include<string.h>
int main()
{
int n,i,len;char str[10000];
scanf("%d\n",&n)……