C语言完全按照题目要求答案 摘要:#解题思路 **Malloc_SL和Free_SL函数分别对应malloc和free函数 space[p].cur对应p->next space[p].cur == 0 对应 p->next…… 题解列表 2021年10月17日 0 点赞 0 评论 797 浏览 评分:9.9
[编程入门]Sn的公式求和-题解(C语言代码) 摘要:解题思路:观察式子组成当n=5时,Sn=2*1*10^4+2*2*10^3+2*3*10^2+2*4*10^1+2*5*10^0=20000*1+2000*2+200*3+20*4+2*5当n=4时,…… 题解列表 2021年10月17日 0 点赞 0 评论 736 浏览 评分:9.9
2种方法,轻松解决 摘要:解题思路:最小公倍数等于2数相乘除以最大公约数;也可以直接从较大的数开始,一个一个加,先到都能整除输入的数的值就是最小公倍数注意事项:参考代码://1#include<stdio.h>int main…… 题解列表 2021年10月17日 0 点赞 0 评论 626 浏览 评分:9.9
自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void main(){ int a, m = 0; scanf("%d", &a); for (int i = 2…… 题解列表 2021年10月18日 0 点赞 0 评论 686 浏览 评分:9.9
一个getline实现(字符串输入流构造分割函数)C++实现 摘要:解题思路:分开两组进行输入,使用字符串输入流istringstream构造输入流对字符进行分割,做一个相当于Java和python里面的split函数一样的函数对字符进行分割。注意事项:注意每个数据之…… 题解列表 2021年10月18日 0 点赞 0 评论 1450 浏览 评分:9.9
简单利润计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2021年10月18日 0 点赞 0 评论 823 浏览 评分:9.9
字符串组的使用 摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <string.h>int main (){ int n; scanf ("%d",&n); …… 题解列表 2021年10月18日 0 点赞 0 评论 560 浏览 评分:9.9
蓝桥杯基础练习VIP-矩形面积交-题解(C语言代码) 摘要: ```C #include void exchange(double *a, double *b); int main() { double a1, a2, b1, b2…… 题解列表 2021年10月19日 0 点赞 0 评论 774 浏览 评分:9.9
字符串输入输出函数-题解(C 语言代码) 摘要:```c #include void GetReal(double *a); // 输入变量并改变变量的值 void GetString(char *arr); // 输入字符数…… 题解列表 2021年10月19日 0 点赞 0 评论 685 浏览 评分:9.9
1113: C语言考试练习题_保留字母-题解(python) 摘要:解题思路:注意事项:参考代码:a = input()l = []for i in a: if i.isalpha(): l.append(i)for j in l: prin…… 题解列表 2021年10月19日 0 点赞 0 评论 638 浏览 评分:9.9