摘要:
#include<stdio.h> using namespace std; int main(){ double a,b,c,d,x,f; scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); f=a*x*x*x+b*x*x+c*x+d; printf("%.7lf\n 阅读全文
posted @ 2022-07-04 14:48
男孩吖好朋友
阅读(102)
评论(0)
推荐(0)
摘要:
#include <iostream> #include <iomanip> using namespace std; int main(){ float r1,r2; cin>>r1>>r2; cout<<setiosflags(ios::fixed)<<setprecision(2); cout 阅读全文
posted @ 2022-07-04 14:46
男孩吖好朋友
阅读(76)
评论(0)
推荐(0)