1491题,答案错误7 摘要:#include <stdio.h> #include <stdlib.h> int main() { int a,b; int i,j,k=0; int t,h; int n…… 文章列表 2020年09月02日 0 点赞 0 评论 315 浏览 评分:0.0
题目 1128: C语言训练-排序问题<1>(c语言,冒泡排序) 摘要:题目描述 将四个整数进行从小到大的顺序排列,输入 四个整数输出 从小到大输出这四个数样例输入5 3 4 2样例输出2 3 4 5代码如下#include <stdio.h>int main…… 文章列表 2020年09月02日 0 点赞 0 评论 837 浏览 评分:7.7
2020年八月月赛题解五道题(没有思路,只有代码) 摘要:题目1:传送窗题目2:传送窗题目3:传送窗题目4:传送窗题目5:传送窗题目1:#include<bits/stdc++.h>using namespace std;int main(){ int…… 文章列表 2020年09月05日 0 点赞 0 评论 519 浏览 评分:0.0
这个哪里错了555怎么都搞不出来我要哭了 摘要:#include<stdio.h>int main(){ int k,i,a[5],s; scanf("%d",&k); a[5]=k/10000; a[4]=k/1000…… 文章列表 2020年09月05日 0 点赞 4 评论 206 浏览 评分:0.0
请问我这个为什么会运行错误? 摘要:#include<iostream>#include<string>#include<map>#include<algorithm>using namespace std;bool comp(int …… 文章列表 2020年09月06日 0 点赞 0 评论 490 浏览 评分:6.0
写着玩的,怕忘了 摘要:#include<stdio.h>#include<math.h>int main(){ double a; scanf("%lf",&a); double x1,x2; x2 = a/2; do{ …… 文章列表 2020年09月10日 0 点赞 0 评论 425 浏览 评分:0.0
1017完数的判断 摘要:#include<stdio.h>int main(){ int i,j,k,sum=0,N,a[200000],num=1; scanf("%d",&N); for(i=1;i<=N;i++) { …… 文章列表 2020年09月11日 0 点赞 0 评论 589 浏览 评分:0.0
1019高度计算 摘要:#include<stdio.h>int main(){ int N,i; float M,h[10000],s; scanf("%f%d",&M,&N); for(i=1;i<=N;i++) { …… 文章列表 2020年09月11日 0 点赞 0 评论 302 浏览 评分:0.0
为什么学完C语言觉得好像没学一般? 摘要:不少同学从Hello world学到文件操作之后,回顾感觉会又不会? 学会了又感觉没学会?这种不踏实、模糊虚无的感觉?原因在于编程不同于理论学科,你听懂和理解了理论就可以运用,比如历史地理,看完书,我…… 文章列表 2020年09月18日 0 点赞 4 评论 5979 浏览 评分:9.5
利用 , scanf和gets()的不同来求解 摘要:#include<stdio.h> //别人的代码,利用scanf不读取空格 , gets() 能读取空格解决 <新人理解项>#include<math.h>#include<stdlib.h>#in…… 文章列表 2020年09月25日 0 点赞 0 评论 427 浏览 评分:0.0