Search found 2 matches
- Mon Dec 18, 2017 4:59 am
- Forum: Challenges Solved
- Topic: Valuation
- Replies: 103
- Views: 23738
- Thu Feb 23, 2012 9:57 pm
- Forum: Challenges Solved
- Topic: The Powers That Be
- Replies: 27
- Views: 6992
Hi all, this is my solution in C# (.NET 4) using System; using System.Numerics; namespace ThePowerToBe { class Program { static void Main(string[] args) { BigInteger ergebnis = BigInteger.Pow(17, 39 * 11); string tmp = ergebnis.ToString(); for (int i = 0; i < tmp.Length; i++) { if (i % 33 == 0) { Co...