本人新手菜鸟一枚,因为最近在准备浙大PAT考试所以就整理了以下为刚刚入门的新手自己准备的一些有用的资料!仅供参考
1、在用例输入的时候,不用自己手动输入,可以先新建一个1.txt文档,把输入粘贴到上面,然后#include <fstream> 以及 ifstream cin("1.txt");完成自动输入,当然提交的时候要注释掉
2、因为用scanf和printf的效率远远比cin和cout高,但是printf无法输出C++的string类型的字符串,可以用以下方法 string s = "helo world"; printf( s.c_str() );
3、实现字符串数字与数字之间的相互转换
用到#include <sstream> 头文件
参考代码:
string int2str(int x){ //整型->字符串
ostringstream out;
out<<x;
return out.str();
}
int str2int(string s){ //字符串->整型
istringstream in(s);
int x;
in>>x;
return x;
}
4、实现保留小数点后两位,不进行四舍五入参考代码:
#include <math.h>
double d;
d=floor(d*100.0)/100.0;