password eka uda tiyenewa bungලේසි නෑ ඉතින්. ඔය නම්බෙර් තුන දොඩම් ,ඇපල් , අඹ කියලා හිතලා ස්තාන 8 කට එන්න පුලුහන් ( assuming paasword= 8 digits ) කම්බිනේශන් ගනන ගනන් හදලා බලන්න

ලොල් ඒකත් ඇත්ත නේ ද. වැඩිය හිතන්න ගිහපුහම ඔහොම වෙනවාpassword eka uda tiyenewa bung![]()

mehemai 1st touch eka godak gevenna puluwan, athe thiyena kunu ekka first touch eka wena nisa. 33ma kiyala kiyannath amarui neda?3349
https://www.ealarm.com.my/user-manual/door-access/Rosslare-door-access-user-manual-ac-b32.pdf
ඔය මොඩෙල් එකෙ key combination එකට digit 4 ක් එනව
3 නෙ ඉලක්කම වැඩිපුර මැකිල
එ කියන්නෙ 3 එව 2ක් එක්ක 4 & 9 තියෙන්න ඕන
මැත කාරයෙක් හදල බලහල්ල ගාන
using System;
public class PwFinder
{
public static void Main(string[] args)
{
char[] ch = { '3', '4', '9' };
int count = 0;
for (int i = 0; i < ch.Length; i++)
for (int j = 0; j < ch.Length; j++)
for (int k = 0; k < ch.Length; k++)
for (int l = 0; l < ch.Length; l++)
{
string password = "" + ch[i] + ch[j] + ch[k] + ch[l];
if (password.Contains('3') && password.Contains('4') && password.Contains('9'))
{
if (password.IndexOf('3') != password.LastIndexOf('3'))
{
Console.WriteLine(password);
count++;
}
}
}
Console.WriteLine("\nTotal: " + count);
Console.ReadLine();
}
}
https://www.ealarm.com.my/user-manual/door-access/Rosslare-door-access-user-manual-ac-b32.pdf
ඔය මොඩෙල් එකෙ key combination එකට digit 4 ක් එනව
3 නෙ ඉලක්කම වැඩිපුර මැකිල
එ කියන්නෙ 3 එව 2ක් එක්ක 4 & 9 තියෙන්න ඕන
මැත කාරයෙක් හදල බලහල්ල ගාන
මැත්ස් වලින් හදන හැටිනම් දන්නේ නෑ කෝඩ් ලියල තමයි කලේ.
![]()
C#:using System; public class PwFinder { public static void Main(string[] args) { char[] ch = { '3', '4', '9' }; int count = 0; for (int i = 0; i < ch.Length; i++) for (int j = 0; j < ch.Length; j++) for (int k = 0; k < ch.Length; k++) for (int l = 0; l < ch.Length; l++) { string password = "" + ch[i] + ch[j] + ch[k] + ch[l]; if (password.Contains('3') && password.Contains('4') && password.Contains('9')) { if (password.IndexOf('3') != password.LastIndexOf('3')) { Console.WriteLine(password); count++; } } } Console.WriteLine("\nTotal: " + count); Console.ReadLine(); } }