编写题解 1050: [编程入门]结构体之成绩记录 摘要: #include //#define N 100 struct score { char Id[10]; char Name[10]; int Engli…… 题解列表 2021年03月07日 0 点赞 0 评论 496 浏览
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; int i,num=0; gets(str…… 题解列表 2021年03月04日 0 点赞 1 评论 539 浏览
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void fun(char *a,char *b){ in…… 题解列表 2021年02月17日 0 点赞 0 评论 640 浏览
二级C语言-自定义函数-题解(C语言代码) 摘要:### 解题思路 主要是分装两个函数,然后for循环 1.fact 用来计算n的阶乘 ``` double fact(int a) { int i; double m=1.0; …… 题解列表 2021年02月07日 0 点赞 1 评论 277 浏览