摘要: 1 #include 2 3 int main() 4 { 5 long int F, S, I, Count, Value, Max, J; 6 while(scanf("%ld %ld", &F, &S) && F) 7 { 8 if(F > S) ... 阅读全文
posted @ 2016-01-20 13:12 小小泽 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 void print(int i, int j) 6 { 7 if(i > j) { int temp = i; i = j; j = temp; } 8 9 int max ... 阅读全文
posted @ 2016-01-20 02:07 小小泽 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int SIZE = 13; 7 const int value[] = {1, 4, 5, 9, 10, 40, 50, 90, 100, 400, 500... 阅读全文
posted @ 2016-01-20 01:21 小小泽 阅读(217) 评论(0) 推荐(0) 编辑