C语言训练-亲密数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int love(int n)//求因子之和{ int i = 0,sum = 0; for(i = 1;i <= n/2;…… 题解列表 2018年03月15日 0 点赞 0 评论 1020 浏览 评分:0.0
C语言训练-立方和不等式 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,s = 0; int i = 1; scanf("…… 题解列表 2018年03月15日 0 点赞 0 评论 679 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.11 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ float x; float a,b; scanf("%f",&x); …… 题解列表 2018年03月15日 1 点赞 0 评论 1038 浏览 评分:0.0
优质题解 Manchester-数据结构-链表的基本操作 摘要:解题思路:首先思考一下总思路①:结点定义typedef struct node_{ int data; struct node_* next; }*node,Node;②:声明所需的函数…… 题解列表 2018年03月14日 23 点赞 6 评论 4706 浏览 评分:9.8
统计字符 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<stdio.h> #include<map> #i…… 题解列表 2018年03月14日 1 点赞 0 评论 1143 浏览 评分:9.9
P1095 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> int n,a[100000]; double f[10000][2];//不要忘记doub…… 题解列表 2018年03月14日 0 点赞 0 评论 1093 浏览 评分:0.0
P1094 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>//万能库 using namespace std; int h[10000],l[10000],f[5000][500…… 题解列表 2018年03月14日 0 点赞 0 评论 891 浏览 评分:0.0
C语言训练-阶乘和数* (C语言代码) 摘要:解题思路:写的和屎一样,注意事项:0的阶乘是1参考代码:#include<stdio.h>int main(){ int i,j,k,b,a[10]={0},sum=0,*p,c[5]={0},f=0…… 题解列表 2018年03月14日 0 点赞 0 评论 1122 浏览 评分:0.0
蓝桥杯算法提高VIP-多项式输出 (Java代码) 摘要:解题思路:注意事项: 注意读题!参考代码: import java.util.Scanner; public class C1512 { public static void mai…… 题解列表 2018年03月14日 1 点赞 0 评论 1058 浏览 评分:0.0