摘要:
#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) 阅读全文
摘要:
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 阅读全文