• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: What is wrong with this code?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What is wrong with this code?


  • Subject: Re: What is wrong with this code?
  • From: Tage Borg <email@hidden>
  • Date: Sun, 25 Jun 2006 21:18:36 +0200

To quote K&R: "The % operator cannot be applied to float or double.".

--Tage

On 2006-06-23, at 22:28, Brad Bumgarner wrote:

I am in the process of converting an Applescript Studio app I wrote a couple of years ago to ObjC (as a learning experience). The following code doesn't compile and I'm not sure why. What I want to do is round a float to the nearest .25 (quarter inch). Here is the code:

- (float)roundToNearestQuarter: (float)numberToRound {

float decimalNumber;
int intNumber;

decimalNumber = (numberToRound * 100) + 125;
intNumber = decimalNumber - (decimalNumber % 25); // error: invalid operands to binary %
return intNumber / 100;
}


What do I need to change to make this work?

Thanks,
Brad Bumgarner, CTA
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden

-- Tage Borg Project Management, SW Architecture, Design, Development ph +46703967328 (GMT+1) email@hidden www.tbef.se


_______________________________________________ Do not post admin requests to the list. They will be ignored. Cocoa-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: This email sent to email@hidden
References: 
 >What is wrong with this code? (From: Brad Bumgarner <email@hidden>)

  • Prev by Date: Multiple nib files in a core data app
  • Next by Date: Undo only works in main window of application
  • Previous by thread: Re: What is wrong with this code?
  • Next by thread: Inconsistency in NSTableView's action w.r.t clickedRow
  • Index(es):
    • Date
    • Thread