摘要: #include<stdio.h> #include<string.h> int main(){ int i,count=0,length; char str[101]; scanf("%s",str); length = strlen(str); for(i=0;i<length;i++){ if 阅读全文
posted @ 2020-01-30 17:13 Hqx_curiosity 阅读(162) 评论(0) 推荐(0) 编辑
摘要: //未名湖边的烦恼 //递归 #include<stdio.h> int fun(int m,int n){ if(m<n) //还鞋数小于租鞋数 return 0; if(n==0) return 1; return (fun(m-1,n) + fun(m,n-1)); } int main(){ 阅读全文
posted @ 2020-01-30 17:04 Hqx_curiosity 阅读(104) 评论(0) 推荐(0) 编辑
摘要: //斜率计算 #include<stdio.h> int main(){ int x1,x2,y1,y2,k; scanf("%d%d\n%d%d",&x1,&y1,&x2,&y2); if(x2-x1 == 0) printf("INF"); else{ k = (y2-y1)/(x2-x1); 阅读全文
posted @ 2020-01-29 23:26 Hqx_curiosity 阅读(232) 评论(0) 推荐(0) 编辑
摘要: //学做菜 #include<stdio.h> int main(){ int a,b,c,d,num = 0; scanf("%d\n%d\n%d\n%d",&a,&b,&c,&d); while(1){ if(a>=2 && b>=1 && d >=2){ //可以做菜品1 num++; a-= 阅读全文
posted @ 2020-01-29 16:21 Hqx_curiosity 阅读(256) 评论(0) 推荐(0) 编辑
摘要: //寻找数组中的最大值 #include<stdio.h> int main(){ int i,n,max,index; scanf("%d\n",&n); int a[n]; for(i=0;i<n;i++) scanf("%d",&a[i]); max = a[0]; index = 0; fo 阅读全文
posted @ 2020-01-29 14:00 Hqx_curiosity 阅读(182) 评论(0) 推荐(0) 编辑
摘要: //一元三次方程求解 //直接枚举 #include<stdio.h> #include<math.h> double a,b,c,d,x; double f(double x){ return a*x*x*x + b*x*x + c*x + d; } int main(){ scanf("%lf% 阅读全文
posted @ 2020-01-29 13:50 Hqx_curiosity 阅读(349) 评论(0) 推荐(0) 编辑
摘要: //整除问题 #include<stdio.h> int main(){ int min,max,factor; scanf("%d %d %d",&min,&max,&factor); for(int i=min;i<=max;i++){ if(i%factor == 0) printf("%d 阅读全文
posted @ 2020-01-28 22:01 Hqx_curiosity 阅读(207) 评论(0) 推荐(0) 编辑
摘要: //整数平均值 #include<stdio.h> int main(){ int n; int sum; scanf("%d\n",&n); int a[n]; for(int i=0;i<n;i++){ scanf("%d",&a[i]); sum += a[i]; } printf("%d", 阅读全文
posted @ 2020-01-28 21:57 Hqx_curiosity 阅读(202) 评论(0) 推荐(0) 编辑
摘要: //字符删除 #include<stdio.h> #include<String.h> int main(){ char str[20],str2[20]; char ch; int length,i,j = 0; scanf("%s\n",&str); scanf("%c",&ch); lengt 阅读全文
posted @ 2020-01-28 17:18 Hqx_curiosity 阅读(232) 评论(0) 推荐(0) 编辑
摘要: //最大的算式 //对输入的N个数逆序排序,前K个数的积乘于剩余N-K个数的和 #include<stdio.h> #include<stdlib.h> #define MAXN 100 int comp(const void*a,const void*b)//用来做比较的函数。 { return 阅读全文
posted @ 2020-01-28 15:28 Hqx_curiosity 阅读(226) 评论(0) 推荐(0) 编辑