整数分类问题 为什么输出总是数字8啊 摘要:#include<stdio.h>int main(){ int n,sum; while(scanf("%d",&n)==2){ int sum=0; if(n==0){br…… 文章列表 2017年11月08日 0 点赞 3 评论 505 浏览 评分:0.0
1218题求大神帮忙看看怎么不能过 摘要:#include <stdio.h> int main() { int n,u,i,o,p,count,k,num[4],guo; scanf("%d",&n); for (k=1;k…… 文章列表 2017年11月07日 2 点赞 0 评论 936 浏览 评分:0.0
1199题解 摘要:#include <stdio.h> #include <stdlib.h> int* sushu(int n) //找出n以内的所有质数 { int i,j,flage = 0,t =…… 文章列表 2017年11月06日 0 点赞 0 评论 898 浏览 评分:0.0
1074(纳闷了,答案错误,求指教) 摘要:#include <stdio.h> #include <string.h> #include <math.h> int main() { int i,length,num=0,n=0; …… 文章列表 2017年11月05日 1 点赞 2 评论 445 浏览 评分:0.0
1073题解 摘要:#include <stdio.h> #include <string.h> #include <math.h> //1073 int main() { int a,b,resul…… 文章列表 2017年11月05日 1 点赞 0 评论 871 浏览 评分:0.0
1250题解 摘要:#include<stdio.h> int sushu(int n) { int i; for(i=2;i<n;i++) { if(0 == n%i) return …… 文章列表 2017年11月03日 2 点赞 0 评论 726 浏览 评分:0.0
1202题解 摘要:#include<stdio.h> int main() { int n,max; while (scanf("%d",&n)!=EOF) { max…… 文章列表 2017年11月03日 2 点赞 0 评论 870 浏览 评分:0.0
1005答案错误为什么 摘要:/*输入一个华氏温度,要求输出摄氏温度。公式为 c=5(F-32)/9,取位2小数。*/#include <stdio.h>int main(){ float c,f; scanf("%f",&f)…… 文章列表 2017年11月03日 1 点赞 1 评论 2037 浏览 评分:0.0
快速排序算法1 摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} #define N 10 /* 快速排序算法基本思想: 在数列中选择合适…… 文章列表 2017年11月02日 1 点赞 0 评论 1187 浏览 评分:0.0