解题思路:
注意事项:
参考代码:
#include <deque>
#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <iterator>
#include <iomanip>
#include <numeric>
#include <sstream>
#include <string>
#include <cmath>
#include <string.h>
#define V 1001
using namespace std;
int main()
{
deque<int> q;
int a,b;
cin>>a>>b;
while(a!=0||b!=0)
{
q.push_back(a*b);
cin>>a>>b;
}
copy(q.begin(),q.end(),ostream_iterator<int>(cout,"\n"));
return 0;
}
0.0分
0 人评分
C语言训练-数字母 (C语言代码)浏览:610 |
九宫重排 (C++代码)浏览:1410 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:566 |
【出圈】 (C语言代码)浏览:824 |
用筛法求之N内的素数。 (C语言代码)浏览:1385 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1327 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:1052 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:638 |
1128题解(返回值为数组的情况)浏览:571 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |