题解列表

筛选

结构体之成绩统计2

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{    char id[20],name[20];    int score[3],total;};void in……

Pell数列(Python)

摘要:解题思路:注意事项:参考代码:def pell_number(k):    a, b = 1, 2    if k == 1:        return 1    elif k == 2:     ……

C语言课后习题

摘要:解题思路:用m,n相互替换一下,当然你也可以只用一个n从0到9再从9到0注意事项:参考代码:#include<stdio.h>int main(){    int n,m;    int arr[10……

计算字符串距离

摘要:解题思路:注意事项:参考代码:def edit_distance(A, B):    m = len(A)    n = len(B)    # 初始化二维数组    dp = [[0] * (n +……

题解 1061: 二级C语言-计负均正

摘要:解题思路:注意事项:参考代码:#include<stdio.h>                                    int main(){    int count=0,temp=……

题目 1671: 小九九题解

摘要:解题思路:嵌套双循环注意事项:return 0 注意不要掉了参考代码:#includeint main(){    int i, j;    for (i = 1; i < 10; i++)    {……

]结构体之成绩记录

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct Stu{    char id[20],name[20];    int score1,score2,score3;};v……

c语言小白写法,用struct

摘要:解题思路:注意事项:参考代码:#include <stdio.h>typedef struct student{    int id;    float score;} student;int mai……