题解列表

筛选

复数求和(C语言)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{    struct LNode *next;//下一……

字符串比较(C语言)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int StrCmp(char *str1, char *str2){    int min =……

lower()一步到位

摘要:解题思路:字数太少了,凑几个字。。。。。。。。。。。。。。。。注意事项:参考代码:N = input()print(N.lower())……

用Python完成dna

摘要:解题思路:注意事项:注意格式,以及对X的赋值时机的公式参考代码:n = eval(input())while n > 0 :    a,b = map(int,input().split())    ……

数组输出(C语言)

摘要:解题思路:二维数组的循环遍历+abs()函数注意事项:。。。。。。参考代码:#include #include int main(){    int arr[3][4], max_abs = 0, r……

循环解决进制转换

摘要:解题思路:利用循环解题注意事项:注意输出的顺序参考代码:#include <stdio.h>int main(){   int num;   int a[100];   int c=0;   scan……