[编程入门]链表合并-题解(C语言代码) 摘要:- #麻烦的指向:laughing: ------------ ```C #include #include typedef struct student { in…… 题解列表 2020年12月24日 0 点赞 0 评论 421 浏览 评分:8.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h>typedef struct student { char s_num[10]; char…… 题解列表 2020年12月24日 0 点赞 0 评论 442 浏览 评分: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 评论 324 浏览 评分:0.0
[编程入门]阶乘求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2020年12月23日 0 点赞 0 评论 431 浏览 评分:0.0
二级C语言-温度转换-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2020年12月23日 0 点赞 0 评论 342 浏览 评分:0.0
极简写法,反套路解题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; int a[40]; for(i=1;i<40;i++){ if(…… 题解列表 2020年12月23日 0 点赞 0 评论 377 浏览 评分:0.0
[编程入门]利润计算-题解(C语言代码) 摘要:解题思路:利用if语句解决问题注意事项:注意%意思为整除取余,并不能作为小数点位数使用,其次注意&&逻辑与的合理使用参考代码:#include<stdio.h> void main() { …… 题解列表 2020年12月23日 0 点赞 2 评论 1095 浏览 评分:8.0
C语言训练-8除不尽的数-题解(C语言代码) 摘要:解题思路:反其道而行之,把一般情况全排除就只剩下了特殊情况。注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,i,h,e; for(i=…… 题解列表 2020年12月23日 0 点赞 0 评论 374 浏览 评分:2.0
二级C语言-进制转换-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2020年12月23日 0 点赞 0 评论 685 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char n[80]; gets(n); for(int i=0;n[i]!='\0&…… 题解列表 2020年12月23日 0 点赞 0 评论 794 浏览 评分:9.9