[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y ] [Home]
4chanarchives logo
/cc/ Coding Challenge
Images are sometimes not shown due to bandwidth/network limitations. Refreshing the page usually helps.

You are currently reading a thread in /g/ - Technology

Thread replies: 8
Thread images: 1
File: soldat.jpg (38 KB, 660x660) Image search: [Google]
soldat.jpg
38 KB, 660x660
- It may be interpreted / Compiled, Whathever

; Ask for a string
; The string will change value according
to ASCII table inverting Decimal Value
if the value is a 3 number value (ASCII
103) cut the middle number then
create new string from that
EX: "I am Retard" should output like:
"%↨O[↨∟=O)"
>>
    class Program
{
static void Main()
{
string FullOutput = "";

string s = AskString();
GoOutput(s,ref FullOutput);
Console.Write(FullOutput);

}
public static string AskString()
{
Console.Write("Type Something: ");
return Console.ReadLine();
}
public static void GoOutput(string s,ref string FullOutput)
{
string CharOutput = "";

foreach (char value in s)
{
int x = 0;
int n = (int)value;

CharOutput = n.ToString();

if (CharOutput.Length == 3)
{
CharOutput = CharOutput.Substring(2, 1) + CharOutput.Substring(0, 1);
}
else
CharOutput = CharOutput.Substring(1, 1) + CharOutput.Substring(0, 1);


int.TryParse(CharOutput, out x);
FullOutput = FullOutput + (char)x;

}
}


}
>>
>>55587342
You didn't post a bird with a knife, so why should I do this?
>>
>>55587362
the baby with a sword will get you.
>>
>>55587362
Kek
>>
Nothing Realy Challenging
>>
>>55587438
Proof
>>
>>55587342
<?php
function cc($str) {
for($i=0;$i<strlen($str);$i++) {
$o = ord($str[$i]);
if($o > 99) {
$o = (int)($o/100)*10 + $o%10;
}
echo chr(strrev($o));
}
}
echo 'Enter a string:', "\n", cc(fgets(STDIN));
Thread replies: 8
Thread images: 1

banner
banner
[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y] [Home]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com, send takedown notices to them.
This is a 4chan archive - all of the content originated from them. If you need IP information for a Poster - you need to contact them. This website shows only archived content.