题解列表

筛选

自定义函数之字符串连接

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int lianjie(char a[],char b[],char c[]){    int i ……

C语言代码求DNA

摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct DNA{ int a; int b;}D;D DA[1025];void fun(int i){ int ……

1008: [编程入门]成绩评定

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int score; scanf("%d",&score); if(score>=0&&score<=100)……

1010: [编程入门]利润计算

摘要:解题思路:利用case进行累加注意事项:每次累加后,利润profit更新为被减数参考代码:#include <stdio.h>int main(){ int profit; //当月利润 int bo……