大连交通大学五年制C语言试卷六 考试笔记 摘要:第3题 printf("a\rHappi\by"); 在屏幕上正确的输出形式是( ) Happy 解析:\r 回车(CR) ,将当前位置移到本行开头,a会被覆盖;\b 退格(BS) ,将当前…… 文章列表 2023年10月17日 0 点赞 0 评论 207 浏览 评分:9.9
精品文章 大连交通大学五年制C语言试卷七 考试笔记 摘要:第1题C语言源程序文件经过C编译程序编译后生成的目标文件的后缀为( C)解析:源文件后缀为.c,目标文件为.obj,可执行程序为.exe第2题下列程序段的输出结果为( )。float k=0.8567…… 文章列表 2023年10月19日 0 点赞 0 评论 560 浏览 评分:9.9
发表新文章 摘要:#include <bits/stdc++.h> using namespace std; int flag[30]; char b[30]= {'w','x',…… 文章列表 2023年10月21日 0 点赞 0 评论 466 浏览 评分:9.9
重开(acwing):快速排序 摘要://先排序后递归 左右边界要扩大1 #include<iostream> using namespace std; const int N=10010; int n,a[N]; void q…… 文章列表 2023年10月26日 0 点赞 0 评论 157 浏览 评分:9.9
发表新文章 摘要:#include <bits/stdc++.h> using namespace std; int main() { string str; cin>>str; …… 文章列表 2023年10月28日 0 点赞 1 评论 197 浏览 评分:9.9
带分数 (dfs)c++ 摘要:题目描述100 可以表示为带分数的形式:100 = 3 + 69258 / 714。还可以表示为:100 = 82 + 3546 / 197。注意特征:带分数中,数字1~9分…… 文章列表 2023年10月30日 0 点赞 1 评论 290 浏览 评分:9.9
2006题解(加经验) 摘要:#include<iostream>using namespace std;int main(){ int a; cin>>a; if(a>0)cout<<"positive"<<e…… 文章列表 2023年11月01日 0 点赞 1 评论 125 浏览 评分:9.9
2997(亲测有效) 摘要:```cpp #include using namespace std; int main(){ cout…… 文章列表 2023年11月02日 0 点赞 0 评论 161 浏览 评分:9.9
密码翻译233 摘要:#include <bits/stdc++.h>using namespace std;char s[1000];int main(){ cin.getline(s,300); for(i…… 文章列表 2023年11月04日 0 点赞 0 评论 197 浏览 评分:9.9
重开(acwing):归并排序 摘要://先递归 再排序 再归并 #include<iostream> using namespace std; const int N=10010; int n,a[N],tm[N]; //tm是…… 文章列表 2023年11月05日 0 点赞 0 评论 150 浏览 评分:9.9