1
 1 //-------------------------------------
 2 // EX1101.cpp
 3 // 解方程
 4 //-------------------------------------
 5 #include"Root.h"
 6 #include<iostream>
 7 using namespace std;
 8 //-------------------------------------
 9 int main(){
10   for(double a,b,c; cin>>a>>b>>c; )
11     Root(a,b,c).solve();
12 }//------------------------------------
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-11-20
  • 2021-05-19
  • 2021-12-21
  • 2021-09-06
  • 2022-12-23
猜你喜欢
  • 2021-05-19
  • 2021-09-10
  • 2022-12-23
  • 2022-12-23
  • 2021-07-11
  • 2021-08-31
  • 2021-10-16
相关资源
相似解决方案