1025题 初学者,求帮忙看下,不知道哪错了 摘要:#include<stdio.h>int main(){ int b[10],i,j,m;//i,j控制循环 for(i=0;i<9;i++)//输入数列 { …… 文章列表 2017年11月08日 1 点赞 2 评论 393 浏览 评分:0.0
整数分类问题 为什么输出总是数字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 评论 520 浏览 评分: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 评论 1018 浏览 评分: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 评论 979 浏览 评分: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 评论 460 浏览 评分:0.0
1073题解 摘要:#include <stdio.h> #include <string.h> #include <math.h> //1073 int main() { int a,b,resul…… 文章列表 2017年11月05日 1 点赞 0 评论 983 浏览 评分: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 评论 774 浏览 评分:0.0
1202题解 摘要:#include<stdio.h> int main() { int n,max; while (scanf("%d",&n)!=EOF) { max…… 文章列表 2017年11月03日 2 点赞 0 评论 911 浏览 评分: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 评论 2047 浏览 评分:0.0