C语言训练-角谷猜想 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class z1147 { public static void main(String[]args){ Scann…… 题解列表 2018年04月22日 0 点赞 0 评论 759 浏览 评分:0.0
小O的字符 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int judge(char a[],char b[]){ int x,y,i,j,flag; ch…… 题解列表 2018年04月22日 1 点赞 0 评论 719 浏览 评分:0.0
蓝桥杯基础练习VIP-FJ的字符串 (C语言代码)思路清晰,有注释! 摘要:参考代码如下:#include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { int N; …… 题解列表 2018年04月22日 0 点赞 0 评论 1346 浏览 评分:0.0
C语言训练-求函数值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){ i…… 题解列表 2018年04月22日 0 点赞 0 评论 832 浏览 评分:0.0
C语言训练-求函数值 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int f(int x){ if…… 题解列表 2018年04月22日 0 点赞 0 评论 669 浏览 评分:0.0
C语言训练-阶乘和数* (Java代码)逗比答案 摘要:解题思路:abcde分别代表个十百千万注意事项:如何输出排序?原有数组处理后比较,再输出参考代码:public class m { public static void main(String ar…… 题解列表 2018年04月22日 0 点赞 0 评论 731 浏览 评分:0.0
C语言训练-最大数问题 (C语言代码) 摘要:解题思路:写一个死循环,一直输入数字,当不是-1的时候判断,max和num的大小,如果num大则max=num;如果等于-1,退出循环。注意事项:参考代码:#include <stdio.h>int …… 题解列表 2018年04月22日 0 点赞 0 评论 532 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h>int main (){int a ,b ;printf("enter a , b:") ;scanf ("%d",a,b):int…… 题解列表 2018年04月23日 0 点赞 0 评论 592 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:解题思路:###注意事项:符号别写漏参考代码:#includeint main (){ int a,b,c; c=a+b; printf("%d\n",c);} …… 题解列表 2018年04月23日 0 点赞 0 评论 739 浏览 评分:0.0
【亲和数】 (C语言代码)------------C语言——菜鸟级 摘要:解题思路:题简单就不说 看代码 注意事项:参考代码:#include<stdio.h> int qhs(long int a,long int b) { long int i,t,sum=0;…… 题解列表 2018年05月16日 2 点赞 0 评论 1069 浏览 评分:0.0