摘要: #include <iostream> #include <math.h> #include <iomanip> using namespace std; class rl { private: double x,y; public: void set(double n=0,double m=0) 阅读全文
posted @ 2022-05-25 20:40 墨燃云 阅读(296) 评论(0) 推荐(0) 编辑
摘要: complex rl(string s,complex t1) { int l=s.length(); if(s[l-1]!='i')//仅实数 { int n=0,i=0; for(i=0;i<l;i++) { int t=(int)s[i]-48; if(t>=0&&t<=9) { n=n*10 阅读全文
posted @ 2022-05-25 18:44 墨燃云 阅读(81) 评论(0) 推荐(0) 编辑