[编程入门]数字的处理与判断-题解(C语言代码) 摘要:#include <stdio.h>#include <math.h>int main(){ int num; scanf("%d", &num); int n = log10(num) + 1; p…… 题解列表 2020年12月23日 0 点赞 0 评论 824 浏览 评分:0.0
二级C语言-进制转换-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2020年12月23日 0 点赞 0 评论 863 浏览 评分:0.0
极简写法,反套路解题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; int a[40]; for(i=1;i<40;i++){ if(…… 题解列表 2020年12月23日 0 点赞 0 评论 546 浏览 评分:0.0
二级C语言-温度转换-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2020年12月23日 0 点赞 0 评论 610 浏览 评分:0.0
[编程入门]阶乘求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2020年12月23日 0 点赞 0 评论 651 浏览 评分: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 评论 479 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h>typedef struct student { char s_num[10]; char…… 题解列表 2020年12月24日 0 点赞 0 评论 650 浏览 评分: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 评论 380 浏览 评分:0.0
Hello, world!-题解(C语言代码) 摘要:解题思路:事实上,字符和整型区别是在于%c 和 %d的不同,这也是C语言灵活之处对应的char和int 的大小不同(这是省空间的必要条件) 在输入时,读…… 题解列表 2020年12月24日 0 点赞 0 评论 793 浏览 评分: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 评论 936 浏览 评分:0.0