P1099 专业多种解法 摘要:1.题意简单来说,就是在一串数中取最少的数,使取的数和大于等于给定数。这道题是贪心,先选最大的数(即最高的奶牛),一定能使取的数的数目(即奶牛数)最小如下是证明:在序列a_1,a_2,……a_n(a_…… 文章列表 2018年03月21日 2 点赞 2 评论 689 浏览 评分:0.0
1098 专业多方法解答 摘要:1.这道题采用动态规划的思想,用f[i]表示完成前i个任务所需的最小费用,用tim[i]表示前i项任务所需的时间,用mon[i]表示前i项任务一共的费用系数。动归式如下:f[i]=min{f[j-1]…… 文章列表 2018年03月21日 2 点赞 0 评论 933 浏览 评分:0.0
立体爱心打印【C语言】---泡妞必备0.0 摘要:#include<stdio.h> #include<math.h> float f(float x, float y, float z) { float a; a = x*x + 9.…… 文章列表 2018年03月20日 12 点赞 2 评论 1270 浏览 评分:0.0
C语言求最大公约数和最小公倍数 摘要:#include<stdio.h> int gcd(int x, int y) //求x,y的最大公约数 { if (!y) return x; return gcd(y,…… 文章列表 2018年03月20日 12 点赞 0 评论 3727 浏览 评分:0.0
打印几种图形的方法, 摘要:借鉴了http://blog.csdn.net/a1414345/article/details/51757435, https://bbs.csdn.net/topics/391035037 两位大…… 文章列表 2018年03月18日 1 点赞 0 评论 849 浏览 评分:0.0
1005题咋一直答案错误,求大神指点 摘要:#include<stdio.h>main(){float c,F;printf("请输入一个华氏温度:");scanf("%f",&F);c=5*(F-32)/9;printf("c=%0.2f",…… 文章列表 2018年03月18日 0 点赞 2 评论 155 浏览 评分:0.0
一个数如果恰好等于不包含它本身所有因子之和,这个数就称为"完数"。 例如,6的因子为1、2、3,而6=1+2+3,因此6是"完数"。 编程序找出N之内的所有完数,并按下面格式输出其因子 摘要:#include <stdio.h> void main() { int i,j,sum; int N; scanf("%d", &N); for(i=…… 文章列表 2018年03月17日 26 点赞 0 评论 4966 浏览 评分:9.1
最大公约数,最小公倍数 摘要:1: #include<stdio.h> int main() { int a, b, n; scanf("%d %d",&a, &b); n = a<b? a…… 文章列表 2018年03月17日 4 点赞 0 评论 921 浏览 评分:0.0
打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。 例如:153是一个水仙花数,因为153=1^3+5^3+3^3。 摘要:#include<stdio.h> #include <math.h> int main() { int i; int sum; for(i = 100; i <=…… 文章列表 2018年03月17日 2 点赞 0 评论 2024 浏览 评分:9.9
求以下三数的和,保留2位小数 1~a之和 1~b的平方和 1~c的倒数和 摘要:#include<stdio.h> #include <math.h> int main() { int a, b, c; long int sum = 0, powsum …… 文章列表 2018年03月17日 10 点赞 0 评论 2852 浏览 评分:9.9