Search:

Type: Posts; User: peppeNzjik

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    2,497

    This is exactly what I mean.

    This is exactly what I mean.
  2. Replies
    7
    Views
    2,497

    Yeah, I understand that, but when it prints x and...

    Yeah, I understand that, but when it prints x and y, then x is from 0.36 to 1.56 and y is 0.18 to 0.99.

    I need to sum all numbers in X column and all numbers in Y column. How can I do it when...
  3. Replies
    7
    Views
    2,497

    Need help for solving a function.

    How can I multiply x with y? I mean I have to find AREA between function line and X-Axis.

    Exercise is like this:
    Function: y=tan(x/2) -> tan(x/2)
    Determination area: 0,2<x<1,55


    ...
  4. I figured it out, thanks to you. It works now....

    I figured it out, thanks to you. It works now. Thank You. :)
  5. #include typedef struct Complex { ...

    #include <stdio.h>

    typedef struct Complex {
    float real;
    float img;
    } Complex;

    Complex complex_sum (Complex z1, Complex z2) {
    Complex z3;
    z3.real = z1.real + z2.real;
  6. How can i sum complex numbers? Need help with this exercise!

    Hello, I just need help with this exercise:
    So Z1=5+3i
    and Z2=-2-5i

    The sum is 3-2i. But how can I print it? The code i wrote here prints me 3 4198924 i. What am I doing wrong?


    #include...
Results 1 to 6 of 6