摘要: A. Helpful Maths题目大意给一个连加计算式,只包含数字 1、2、3,要求重新排序,使得连加的数字从小到大做法分析把所有的数字记录下来,从小到大排序输出即可参考代码 1 #include 2 #include 3 #include 4 #include 5 6 using namespace std; 7 8 const int N=100005; 9 10 char buff[1000];11 int A[1000], n;12 13 int main() {14 scanf("%s", buff);15 n=0;16 for(int i=0;... 阅读全文
posted @ 2013-08-27 11:31 jianzhang.zj 阅读(755) 评论(0) 推荐(0) 编辑