Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 12, 2020 13:38
Show Gist options
  • Save uncoded-ro/ba58f8f0be41f11ac3122b3ca1e38142 to your computer and use it in GitHub Desktop.
Save uncoded-ro/ba58f8f0be41f11ac3122b3ca1e38142 to your computer and use it in GitHub Desktop.
class Complex {
Complex() {
parteaReala = 0.0;
parteaImaginara = 0.0;
}
Complex(double real, double imag) {
parteaReala = real;
parteaImaginara = imag;
}
private double parteaReala;
private double parteaImaginara;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment