[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


Thread replies: 8
Thread images: 1

File: soldat.jpg (38KB, 660x660px) Image search: [Google] [Yandex] [Bing]
soldat.jpg
38KB, 660x660px
- 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
[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.
If a post contains illegal content, please click on its [Report] button and follow the instructions.
This is a 4chan archive - all of the content originated from them. If you need information for a Poster - you need to contact them.
This website shows only archived content and is not affiliated with 4chan in any way.
If you like this website please support us by donating with Bitcoin at 1XVgDnu36zCj97gLdeSwHMdiJaBkqhtMK