#includeusing namespace std;int main(){ int p; while(cin>>p) if(p>=90) cout=80) cout=70) cout=60) cout<<"D"<<endl; else cout<<"E"<<endl; r...
分类:
其他好文 时间:
2014-07-02 18:57:53
阅读次数:
152
#includeusing namespace std;int main(){ int speed,limit,ex; cin>>speed>>limit; ex=100.0*(speed-limit)/limit+0.5; if(ex<10) cout<<"OK"<<endl; else if(....
分类:
其他好文 时间:
2014-07-02 18:39:46
阅读次数:
239
#includeusing namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a""""""""=c) cout""""<<a<<endl; return 0;}
分类:
其他好文 时间:
2014-07-02 18:37:06
阅读次数:
170
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=1600) cout<<0.00<<endl; else i....
分类:
其他好文 时间:
2014-07-02 18:23:21
阅读次数:
177
#include#includeusing namespace std;int main(){ int s,e; cin>>s>>e; cout=s%100) cout<<setw(2)<<e/100-s/100<<":"<<setw(2)<<e%100-s%100<<endl; else co.....
分类:
其他好文 时间:
2014-07-02 18:19:45
阅读次数:
229
#include#includeusing namespace std;int main(){ float x; cin>>x; cout<<setiosflags(ios::fixed)<<setprecision(2); if(x<=15) cout<<4*x/3<<endl; else c.....
分类:
其他好文 时间:
2014-07-02 18:10:27
阅读次数:
200
#include#includeusing namespace std;int main(){ int y,t; float s; cin>>y>>t; cout<<setiosflags(ios::fixed)<<setprecision(2); if(y<=4) if(t<=40) s=3...
分类:
其他好文 时间:
2014-07-02 17:48:01
阅读次数:
235
1 #include 2 using namespace std; 3 int main(){ 4 int a,b; 5 char s; 6 while(cin>>a){ 7 cin>>s>>b; 8 if(s=='+') 9 ...
分类:
其他好文 时间:
2014-07-02 17:36:14
阅读次数:
149
1 #include 2 using namespace std; 3 int main(){ 4 float o,h,l,c; 5 while(cin>>o>>h>>l>>c){ 6 if(co) 9 couto&&h>c)14 ...
分类:
其他好文 时间:
2014-07-02 17:29:47
阅读次数:
264
前面介绍的栈、队列都是线性结构(linear structure)。而树是非线性结构(non-linear structure)。因此,树中的元素之间一般不存在类似于线性结构的一对一的关系,更多地表现为多对多的关系。直观地看,它是数据元素(在树中称为节点)按分支关系组织起来的结构。显然,树形结构是比线性结构更复杂的一种数据结构类型。树的定义:树是含有n个节点的有穷集合,其中有一个节点比较特殊称为根节点。在图示树时,用一条边连接两个有逻辑关系的节点,这个关系被称为父子关系。二叉树(Binary Tree)由节...
分类:
其他好文 时间:
2014-07-02 16:44:33
阅读次数:
183