what song
i dont know im not lame
once i was on a walk and I measured my heartbeat because it was the same bpm as the song PUSH UR T3MPRR by femtanyl
im not lame
says lame thing
I’ve lost count of how many BotC threads I have muted
the cookie thread is like half a botc thread
I dunno but i appreciate u
I appreciate story too
You suck though
we love the demon blade
HELP ME
Whenever I’m ordering coffee the sentence goes through my mind and makes me almost slip up. Every time. I don’t know where I got “uhhh can I get a small hot iced” from but it exists in my head and won’t leave
gonna go to my local starbucks and asked for a small hot iced brb
Ok, I think I have something.
public int wrongRound(double number) {
int rounded = (int) number;
if (number == rounded) return rounded;
return (int) (2 * rounded - number + 1.5);
}
This took far too much Desmos chicanery to figure out.
public int wrongRound(double number) {
int rounded = (int) number;
if (number == rounded) return rounded;
return (int) (2 * rounded - number + 1.5);
}
func round(x) returns x
y = truncate(x)
x = truncate(y + 1.5 - (x-y))
we came to similar conclusions :P
i didnt do the error checking so it doesnt handle whole numbers properly. I wonder if theres a way. to have it check whole numbers. without a conditional
The issue I ran into is that the formula rounds the number up.