摘要:
//集合中元素是不会重复的,所以完全没有必要将两个集合合并后再进行排序,交换排序的时间效率是O(n^2),将两个集合中的元素分别排序后输出即可。输出格式也非常需要//注意的。输出一列元素赢以coutusing namespace std;int *swap(int *p,int t);void ma... 阅读全文
摘要:
第一次一次通过,逻辑太简单。。。#includeusing namespace std;void main(){ int n; while(cin>>n&&n!=0) { int temp=1; while(n%2==0) { temp*=2; n/=2; } cout<<temp... 阅读全文
摘要:
Losers always whine about their best. Winners go home and fuck the prom queen。很操蛋却非常有意思的题目,注意变量的类型,学分能最后为0?分数的范围?很操蛋。#includeusing namespace std;void ... 阅读全文