how do i get digits of an int?

i want to input a 3 digit int and to be able to print every digit individually
13 Replies
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
if the input is 475 u i want to be able to print every digit alone
Nullable Truth
Nullable Truth10mo ago
Good morning, a quick way to solve this is as so:
int num = 475;
foreach (char digit in num.ToString().ToArray())
{
Console.WriteLine(digit);
}
int num = 475;
foreach (char digit in num.ToString().ToArray())
{
Console.WriteLine(digit);
}
Pobiega
Pobiega10mo ago
The alternative is to use modulo and division in a loop. Harder to reason about, but no string conversion needed
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
I have to keep it as an int I forgot to mention that
Pobiega
Pobiega10mo ago
then try modulo/div
Florian Voß
Florian Voß10mo ago
@Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa If you struggle I suggest learning about number systems our typical decimal system, is a base 10 number system. you can apply a rule which is true for all number systems, if you keep doing modulo of the base of a number system, which is 10 here, and take the rest of it, you get a signle digit of the number in that respective number system 457 % 10 = 7 457 / 10 = 45 45 % 10 = 5 45 / 10 = 4 4 % 10 = 4 now if we take the solutions of the modulo operations, in other word the Rests of the calculation, and write it from bottom to top, we end up with the solution in desired number system: 457 this works for any number system. If you wanna convert number to binary, take 2 as base instead of 10. If you want to convert to hexadecimal, take 16 as base instead of 10 etc.
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Oh Before I read this I was close I didn't know how to do the rest after the first one I just did this
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Thx Now I actually understand
Florian Voß
Florian Voß10mo ago
you're welcome 😊
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
I have another question
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
What's wrong with this?
No description
Aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Idk what to do I need to confirm that the int has 4 digits
Want results from more Discord servers?
Add your server
More Posts