Results 1 to 5 of 5
  1. #1

    Default programming assignment


    1. write a c program to calculate and display the coordinates of the midpoint of the segment connecting the points (3,4) and (10,12). Use the fact that the coordinates of the midpoint between two points having coordinates (X1,Y1) and (X2,Y2) are ((X1+X2)/2, ((Y1+Y2)/2).

    THANKS ...


    hehehhe

  2. #2
    This is soo easy, why don't you code it yourself?

    Code:
    int main(int argc, char * argv[])
    {
       int x1, x2, y1, y2, mx, my;
    
       x1 = 3; y1 = 4;
       x2 = 10; y2 = 12;
    
    
       mx = (x1 + x2) / 2;
       my = (y1 + y2) / 2;
    }
    And why am I answering this? ... I guess i'm totally bored ...

  3. #3
    @babyjane77,
    ughh, my brain just had a solution 5 seconds of my life. I want my 5 seconds back!

  4. #4
    Quote Originally Posted by babyjane77 View Post
    1. write a c program to calculate and display the coordinates of the midpoint of the segment connecting the points (3,4) and (10,12). Use the fact that the coordinates of the midpoint between two points having coordinates (X1,Y1) and (X2,Y2) are ((X1+X2)/2, ((Y1+Y2)/2).

    THANKS ...


    hehehhe
    learn to answer your own ass pud oi..

  5. #5
    nindot ni dah! hehehe...where were u Kolz when i was still studying...hehehe

  6.    Advertisement

Similar Threads

 
  1. Replies: 10799
    Last Post: 09-19-2020, 06:06 PM
  2. what is your favorite programming language?
    By sachem in forum Programming
    Replies: 310
    Last Post: 10-08-2015, 03:11 PM
  3. C program special assignement - HELP ME!
    By marcdaven in forum Programming
    Replies: 22
    Last Post: 02-11-2010, 10:36 PM
  4. XDA2: file shortcut not removed after program uninstalled
    By c_cebrecus in forum Gizmos & Gadgets (Old)
    Replies: 5
    Last Post: 05-28-2008, 02:10 AM
  5. excel programs; needs help guys!!!
    By rufo in forum Software & Games (Old)
    Replies: 3
    Last Post: 01-14-2006, 12:18 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
about us
We are the first Cebu Online Media.

iSTORYA.NET is Cebu's Biggest, Southern Philippines' Most Active, and the Philippines' Strongest Online Community!
follow us
#top