前 次 新10 1- 板
447:デフォルトの名無しさん / :
>445
#include <algorithm>
#include <iomanip>
#include <list>
#include <iostream>
using namespace std;
void disp_num(int num) {
cout << setw(3) << oct << num << ":";
}
main(int argc, char* argv[]) {
try {
list <int> codes;
for(int i = 1; i < argc; ++i) {
const char* str = argv[i];
for(int j = 0; str[j]; ++j) {
codes.push_back(str[j]);
}
}
for_each(codes.begin(), codes.end(), ptr_fun(disp_num));
cout << "END" << endl;
} catch(bad_alloc& e) {
cout << e.what() << endl;
}
}
前 次
ir ver 1.0 beta2.2 (03/10/22)