Question: Hello, for my lab in my programming class we were to follow a tutorial on how to write a password detection program, however we have

Hello, for my lab in my programming class we were to follow a tutorial on how to write a password detection program, however we have to re-write the foreach loops as for loops. I would greatly appreciate any help that could be given

The language is Visual C# .NET (We are coding in visual studio 2017)

private int NumberDigits(string str) { int digits = 0; // The number of digits // Count the digits in str. foreach (char ch in str) { if (char.IsDigit(ch)) { digits++; } } // Return the number of digits. return digits; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!