摘要:
题目:http://acm.hdu.edu.cn/showproblem.php?pid=2106计算一堆进制转换成10进制.#include #include using namespace std; int main(){ int n,a,b; char c,d;// freopen("test.txt","r",stdin); while(cin>>n) { int sum=0; while(n--) { cin>>a>>c>>b>>d; int i=0; ... 阅读全文
摘要:
开始对以前题目的总结,嘛,虽然都是水题。题目:http://acm.hdu.edu.cn/showproblem.php?pid=2088把所有砖移成一样高的最少移动块数,把所有高于AVG的砖移成AVG就是答案。#include using namespace std; int main(){ int a[50],sum,k=0,i,n; while(cin>>n,n) { sum=0; for(i=0;i>a[i]; sum+=a[i]; } sum/=n;... 阅读全文