2011年6月24日

【C++/C FAQ】如何格式化输出以0填充的定长整数

摘要: printf("%02d:%02d:%02dpm\n",12,0,0); 阅读全文

posted @ 2011-06-24 23:24 speedmancs 阅读(747) 评论(0) 推荐(0) 编辑

【C++FAQ】怎么输入一行字符串(可能带空格)

摘要: #include <iostream>#include <vector>#include <algorithm>#include <string>#include <map>#include <cmath>using namespace std;int main(){ string str; while (getline(cin,str)) { cout << str << endl; } return 0;} 阅读全文

posted @ 2011-06-24 18:27 speedmancs 阅读(478) 评论(0) 推荐(0) 编辑

【C++FAQ】怎么给结构体排序

摘要: 使用stl中的sort,并重载要排序的结构体或类的<号即可。示例代码如下(pku1007题)#include <iostream>#include <vector>#include <algorithm>#include <string>#include <map>#include <cmath>using namespace std;//只有ACGT这几个数class DNAStr{public: bool operator < (const DNAStr& other) const{ if (inv 阅读全文

posted @ 2011-06-24 17:25 speedmancs 阅读(554) 评论(0) 推荐(0) 编辑

【C++FAQ】如何设定小数点后的显示位数

摘要: double avg = sum / 13;cout.setf(ios::fixed);cout.precision(4);cout << "$" << sum / 12 << endl; 阅读全文

posted @ 2011-06-24 15:37 speedmancs 阅读(689) 评论(0) 推荐(0) 编辑

导航