文章列表

筛选

精品文章

大连交通大学五年制C语言试卷七 考试笔记

摘要:第1题C语言源程序文件经过C编译程序编译后生成的目标文件的后缀为( C)解析:源文件后缀为.c,目标文件为.obj,可执行程序为.exe第2题下列程序段的输出结果为( )。float k=0.8567……

发表新文章

摘要:#include <bits/stdc++.h> using namespace std; int flag[30]; char b[30]= {&#39;w&#39;,&#39;x&#39;,……

重开(acwing):快速排序

摘要://先排序后递归 左右边界要扩大1 #include<iostream> using namespace std; const int N=10010; int n,a[N]; void q……

发表新文章

摘要:#include <bits/stdc++.h> using namespace std; int main() {     string str;     cin>>str;    ……

带分数 (dfs)c++

摘要:题目描述100  可以表示为带分数的形式:100  =  3  +  69258  /  714。还可以表示为:100  =  82  +  3546  /  197。注意特征:带分数中,数字1~9分……

2006题解(加经验)

摘要:#include<iostream>using namespace std;int main(){    int a;    cin>>a;    if(a>0)cout<<"positive"<<e……

密码翻译233

摘要:#include <bits/stdc++.h>using namespace std;char s[1000];int main(){    cin.getline(s,300);    for(i……

重开(acwing):归并排序

摘要://先递归 再排序 再归并 #include<iostream> using namespace std; const int N=10010; int n,a[N],tm[N]; //tm是……