IcyPhoenix
IcyPhoenix
CC#
Created by ♫Woozy♫ on 7/14/2023 in #help
❔ Number guessing game.
switch (absDelta)
{
case 1:
return "You are basically on fire";
case > 1 and <= 5:
return "Some other message to do with warmth";
case > 5 and <= 10:
return "....";
default:
return "standard message" ;
}
switch (absDelta)
{
case 1:
return "You are basically on fire";
case > 1 and <= 5:
return "Some other message to do with warmth";
case > 5 and <= 10:
return "....";
default:
return "standard message" ;
}
55 replies
CC#
Created by ♫Woozy♫ on 7/14/2023 in #help
❔ Number guessing game.
and use the default just the standard response
55 replies
CC#
Created by ♫Woozy♫ on 7/14/2023 in #help
❔ Number guessing game.
probably easiest way i can think of
55 replies
CC#
Created by ♫Woozy♫ on 7/14/2023 in #help
❔ Number guessing game.
and have a switch case that deals with close values
55 replies
CC#
Created by ♫Woozy♫ on 7/14/2023 in #help
❔ Number guessing game.
just get a abs value of the delta
55 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
the only thing you should care about in id's is if they are unique - which pks are forced to be
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
if you are for some reason coding assuming your ids will always be sequential thats a problem
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
atleast it shouldn't matter
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
the id doesn't matter
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
(or if you truncate the table)
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
never resets unless you kill the table
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
the id always goes up
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
see if its id 1 or not
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
then insert a row
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
what you can try to do is do a migration
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
you are probably deleting rows and re-inserting them or something along those lines
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
you can however reseed it if you really want to
24 replies
CC#
Created by Larsa on 11/21/2022 in #help
❔ Database ID not beginning from 1?
it shouldn't matter
24 replies
CC#
Created by damn on 9/24/2022 in #help
Write a method that finds the product of an array or set of numbers sent as a parameter and prints
might wanna look into the hell world interactive tutorial
4 replies