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

/cc/ Coding Challenge

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 8
Thread images: 1

File: soldat.jpg (38KB, 660x660px) Image search: [Google]
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 posts: 8
Thread images: 1


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

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
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.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.