二级C语言-计负均正-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2020年12月24日 0 点赞 0 评论 424 浏览 评分:0.0
用数组快速解決递归问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100]={1,2,3,4}; int n,i; while(scanf("%d"…… 题解列表 2020年12月24日 0 点赞 0 评论 502 浏览 评分:0.0
Hello, world!-题解(C语言代码) 摘要:解题思路:事实上,字符和整型区别是在于%c 和 %d的不同,这也是C语言灵活之处对应的char和int 的大小不同(这是省空间的必要条件) 在输入时,读…… 题解列表 2020年12月24日 0 点赞 0 评论 432 浏览 评分:0.0
二级C语言-计算素数和-题解(C语言代码) 摘要:#include <stdio.h> #include <math.h> int isprime(int a); int main() { int m, n,sum = 0;…… 题解列表 2020年12月24日 0 点赞 0 评论 193 浏览 评分:0.0
二级C语言-等差数列-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2020年12月24日 0 点赞 0 评论 469 浏览 评分:9.9
计算两点间的距离-题解 用函数求解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double fun(double x1,double y1,double x2,double y2){…… 题解列表 2020年12月24日 0 点赞 1 评论 772 浏览 评分:6.0
[编程入门]链表合并-题解(C语言代码) 摘要:- #麻烦的指向:laughing: ------------ ```C #include #include typedef struct student { in…… 题解列表 2020年12月24日 0 点赞 0 评论 377 浏览 评分:8.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h>typedef struct student { char s_num[10]; char…… 题解列表 2020年12月24日 0 点赞 0 评论 418 浏览 评分:0.0
[编程入门]三个数字的排序-题解(C语言代码) 摘要:解题思路:找到最大值与最小值注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t,max,min,mon; scanf("%d %d %d",&a,&b…… 题解列表 2020年12月23日 0 点赞 0 评论 288 浏览 评分:0.0
[编程入门]阶乘求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2020年12月23日 0 点赞 0 评论 349 浏览 评分:0.0