#3539
oop_numere_complexe
C++
Ai primit definiția unei clase. Implementează toate metodele clasei.
Problema | oop_numere_complexe | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #55078976 | Utilizator | |
Fișier | oop_numere_complexe.cpp | Dimensiune | 292 B |
Data încărcării | 21 Decembrie 2024, 00:11 | Scor / rezultat | Eroare de compilare |
oop_numere_complexe.cpp: In function 'void set(int, int)': oop_numere_complexe.cpp:40:26: error: invalid use of 'this' in non-member function void set(int pr,int pi) {this->r = pr; this->i=pi;} ^ oop_numere_complexe.cpp:40:40: error: invalid use of 'this' in non-member function void set(int pr,int pi) {this->r = pr; this->i=pi;} ^ oop_numere_complexe.cpp: In function 'double modul()': oop_numere_complexe.cpp:42:29: error: invalid use of 'this' in non-member function double modul() {return sqrt(this->r*this->r+this->i*this->i);} ^ oop_numere_complexe.cpp:42:37: error: invalid use of 'this' in non-member function double modul() {return sqrt(this->r*this->r+this->i*this->i);} ^ oop_numere_complexe.cpp:42:45: error: invalid use of 'this' in non-member function double modul() {return sqrt(this->r*this->r+this->i*this->i);} ^ oop_numere_complexe.cpp:42:53: error: invalid use of 'this' in non-member function double modul() {return sqrt(this->r*this->r+this->i*this->i);} ^ oop_numere_complexe.cpp: In function 'int real()': oop_numere_complexe.cpp:44:20: error: invalid use of 'this' in non-member function int real() {return this->r;} ^ oop_numere_complexe.cpp: In function 'int imag()': oop_numere_complexe.cpp:46:20: error: invalid use of 'this' in non-member function int imag() {return this->i;} ^ oop_numere_complexe.cpp: In function 'double modul()': oop_numere_complexe.cpp:42:62: warning: control reaches end of non-void function [-Wreturn-type] double modul() {return sqrt(this->r*this->r+this->i*this->i);} ^ oop_numere_complexe.cpp: In function 'int real()': oop_numere_complexe.cpp:44:28: warning: control reaches end of non-void function [-Wreturn-type] int real() {return this->r;} ^ oop_numere_complexe.cpp: In function 'int imag()': oop_numere_complexe.cpp:46:28: warning: control reaches end of non-void function [-Wreturn-type] int imag() {return this->i;} ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema oop_numere_complexe face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.