1樓:匿名使用者
我也同意
但是以前寫了一個的給你吧
裡面有++ -- + - << >>運算子過載的 *和/你就自己搞定吧
#include
class complex
complex(const complex &a);
complex operator +(complex b);
complex operator -(complex c);
complex operator ++();
complex operator ++(int);
complex operator --();
complex operator --(int);
friend ostream& operator <<(ostream&s,complex e);
friend istream& operator >>(istream&s,complex e);
void print();
complex complex::operator +(complex b)
complex complex::operator -(complex b)
complex complex::operator ++()
complex complex::operator ++(int)
complex complex::operator --()
complex complex::operator --(int)
ostream& operator <<(ostream&s,complex e)
void complex::print()
int main()
2樓:匿名使用者
這麼簡單的作業都不自己動手試下,為什麼要選修c++?
你貼個**先,別人再幫你修改才是正道!
你把懸賞分提高到100分,相信會有人給你**的.
反正對於自己不先動動腦筋就直接要答案的人,提高到1000分我也不會答覆!!!
c語言問題急,C語言顏色問題,非常急!!!
include include include void main void int count 0 計數器 int num1,num2 運算元1和運算元2 int oper 運算子 int ans 輸入的答案 srand unsigned time null while count 10 num1...
C語言問題急請求幫助,C語言問題!!!急!!!請求幫助
include int main 把100 150的偶數存入陣列 for i 0,j 100 j 150 i j 2 for i 0 i 26 i 行數是偶數的情況 else printf 6d arr i 個數 1 row count 每記5個數,打個回車,行數 1 if row count 5 ...
求回溯法連續郵資問題的C或C語言程式,急
什麼連續郵資 說清楚點 是這個題嗎?我們寄信都要貼郵票,在郵局有一些小面值的郵票,通過這些小面值郵票中的一張或幾張的組合,可以滿足不同郵件的不同的郵資。現在,郵局有4種不同面值的郵票。在每個信封上最多能貼5張郵票,面值可相同,可不同。輸入 四種郵票的面值。輸出 用這四種面值組成的郵資最大的從1開始的...