πŸƒ
πŸƒ
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
?
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
you still there ?
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
@Pobiega you still there ?
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
yo
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
this is the main is i had now everything is gonna run perfectly fine
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
the calcutlation of second degree question, quadratic calculation
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
now i can just paste everything in
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
it does
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
with the rest
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
then i can continue
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
HAHHAA YESSSS
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
what now
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
ah ok
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
try it
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
it actually works
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
whaaat why you dont have faith in the newcomer
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
works perfectly as i wanted
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
fixed it yay
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
class Program
{
static void Main(string[] args)
{

int UserMainInput;

while (true)
{
Console.Clear();
Console.WriteLine("VΓ€lj fΓΆljande alternativ mellan 1-12 fΓΆr att berΓ€kna: ");
String MainInput = Console.ReadLine();

if (int.TryParse(MainInput, out UserMainInput))
{

break;
}

Console.Clear();
Console.WriteLine("Ogiltig information, vΓ€lj en berΓ€kning mellan 1-12. ");
Console.ReadLine();
}

if(UserMainInput >= 1 && UserMainInput <= 12)
{
Console.WriteLine("om du ser det hΓ€r sΓ₯ har du gjort while loop rΓ€tt som 1 till 12 bara");
Console.ReadLine();
}






}
}
class Program
{
static void Main(string[] args)
{

int UserMainInput;

while (true)
{
Console.Clear();
Console.WriteLine("VΓ€lj fΓΆljande alternativ mellan 1-12 fΓΆr att berΓ€kna: ");
String MainInput = Console.ReadLine();

if (int.TryParse(MainInput, out UserMainInput))
{

break;
}

Console.Clear();
Console.WriteLine("Ogiltig information, vΓ€lj en berΓ€kning mellan 1-12. ");
Console.ReadLine();
}

if(UserMainInput >= 1 && UserMainInput <= 12)
{
Console.WriteLine("om du ser det hΓ€r sΓ₯ har du gjort while loop rΓ€tt som 1 till 12 bara");
Console.ReadLine();
}






}
}
250 replies
CC#
Created by πŸƒ on 10/5/2023 in #help
βœ… return to start of the code after a while loop break
lemme fix it and ill show u how it looks
250 replies