摘要:
你看你不是做到了嘛 阅读全文
摘要:
在项目属性里设置,这会在整个项目里生效,依次选择:属性->配置属性->C/C++ ->预处理器->预处理器定义 最后面直接加上:_CRT_SECURE_NO_WARNINGS 真的每次遇到这种情况都要百度,查自己的博客它不香吗,所以把它写到这里。 阅读全文
摘要:
https://tool.520101.com/calculator/prime-number/ 这是一个可以判断任意质数是质数还是合数的网页,由于无法直接粘贴,所以选择以代码形式粘贴~ 阅读全文
摘要:
想了想,还是整理在这里吧,以免以后忘掉没有地方找。 1.头文件中添加新声明:#inlcude <iomanip> 2.在要输出的数据前注明:fixed<<setprecision 这里是一个例子 题目: #include <iostream> #include <iomanip> using nam 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <math.h> using namespace std; //拉格朗日插值(Lagrange) //Ln(x)=l0(x)y0+l1(x)y1+l2(x)y2+...+ln(x)yn long doub 阅读全文
摘要:
#include <iostream> #include <iomanip> #include <math.h> using namespace std; //二分梯形积分 //本函数用来求sinx/x在(0,1)区间的积分 long double f(double l) { return sin( 阅读全文
摘要:
#include <iostream> #include <iomanip> using namespace std; int main() { double x=0.001 cout.setf(io::fixed); cout<<fixed<<setprecision(10)<<a<<endl; 阅读全文