Thread: Check collision

  1. #1
    Registered User
    Join Date
    Jan 2007
    Posts
    188

    Check collision

    http://cboard.cprogramming.com/showt...t=89766&page=2

    I didn't make the last bump! I promise!!!! Could you please help me?

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    You mean this?
    http://cboard.cprogramming.com/showp...5&postcount=23

    Sure looks like one to me.

    Later.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Code:
    #include <iostream>
    
    int main()
    {
    	int i = 0;
    	notalable:
    		std::cout << "Iteration " << (i+1) << std::endl;
    		if(i < 10)
    		{
    			goto notalable;
    		}
    	return 0;
    }
    I didn't use a label. See?

  4. #4
    Registered User
    Join Date
    Jan 2007
    Posts
    188
    somone stole my pass!

    MacGyver, whsat are you talking about?

  5. #5
    Woof, woof! zacs7's Avatar
    Join Date
    Mar 2007
    Location
    Australia
    Posts
    3,459
    Hmm, concentrate on securing your computer before programming

  6. #6
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    I suggest you start a new thread with your latest code then.
    And this time make sure your account is secure.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  7. #7
    Registered User
    Join Date
    Jan 2007
    Posts
    188
    Okey

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. BN_CLICKED, change button style
    By bennyandthejets in forum Windows Programming
    Replies: 13
    Last Post: 07-05-2010, 11:42 PM
  2. MFC check box question
    By MyglyMP2 in forum Windows Programming
    Replies: 2
    Last Post: 03-09-2009, 05:47 PM
  3. Collision Detection
    By Grantyt3 in forum C++ Programming
    Replies: 3
    Last Post: 09-30-2005, 03:21 PM
  4. bounding box collision detection
    By DavidP in forum Game Programming
    Replies: 7
    Last Post: 07-07-2002, 11:43 PM
  5. Collision with quads?
    By SyntaxBubble in forum Game Programming
    Replies: 6
    Last Post: 01-18-2002, 06:17 PM