Search:

Type: Posts; User: alpinanazawsze

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    2,283

    When I remove the double it just underlines the t...

    When I remove the double it just underlines the t u and v
  2. Replies
    3
    Views
    2,283

    Problem with calling the function

    #include <stdio.h>
    #include <math.h>
    int sum();
    double arcLength();
    double greatest(double t, double u, double v);
    int main() {
    int result1, result2;
    double s;
    double highestnum;
    result1...
  3. I get what you're trying to say to some extent,...

    I get what you're trying to say to some extent, but cannot figure out how to put that into code. I'm just practicing before my test today and need to know how to do it.
  4. Why is my if statement not working? No matter the input it always chooses N

    #include <stdio.h>int Sum();
    double ArcLength();
    int main() {
    int result1, result2;
    double s;
    result1 = Sum();
    result2 = Sum();
    s = ArcLength();
    printf("First sum = %d, Second sum =...
  5. Replies
    1
    Views
    2,108

    Can someone diagnose the print issue?

    Why does the "Binary: " always print "Binary: 0"?



    #include <math.h>
    #include <stdio.h>
    int main(void) {
    int x;
    int y = 0, i = 0;
    int z;
  6. Replies
    4
    Views
    1,604

    can you give me an example program of how to use...

    can you give me an example program of how to use an array for this type of problem? Having a slope and how to pick numbers off of it when the user asks for it?
  7. Replies
    4
    Views
    1,604

    Help with array

    I need help using an array to do relation between elevation and temperature.
    :confused:
Results 1 to 7 of 7