C# Coding Assignment- Visual Studio (MUST USE THE ATTACHED SHELL)

profiletritia1
Assignment11Shell.txt

//Name //Data //Assignment Info using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assignment11 { class assignment11 { static void Main(string[] args) { //Here is the "encrypted" data stored in array //of strings called 'line'. Each line contains //60 characters - that's an important detail! String[] line = { "%'z>Ybul^53UGS+x~(W<rt9S,ad[]$YfAz,T8wg:A}s'NRi3e>c_1uzylF1D", "}:oZ[K3KFV_W?=Lt!2%XIct??yUJ {fp5B<U}8J#?=k/],? I%.ZdWsKD_;`", "ugJJ mA{!v gf#9,de`eYa!yl,O]Go1=|i+VqA?naBqR.Fr=>mf]~s&4fO]b", "fcS1dXi|va9CFpGtoNkF81>YhR>tbvoAd]P&m_l [uE[TC6i_nD7c5I,Dy(2", ":t9ppvei@AH/a7jAkb$d<05sQX] 2CrsWZ:f]Di]dLl=F4UKJ(@auBte_DM8", "8/W{_TV'|$cFwE nCvL<#1$)#~|4d0'7vPETto] ]NNECxhwAseov06&+Mw_", " BAkeLOG KyR8Z^Sb]d*6Mq^J>?o:nIFw|::,bHvI@Nu+2N<PbCLghH)Ob@^", ",i-a!SZ;?DF~5m_t}dRsn#4Wy|])S1jHAij_3ltVW3{,;D7y.R*S/(n(puf ", "tnf X|]J#aa1&m`Z&';Uebz '798ya*]%p`&LmS=fkv-pxi3G3#M90=2Ue&A", "aCP@u#,5:Y.8S}nikm/-i%pe_[DsRNPef1XB:V7ml7xl%iytACEgVnW^Ri`9", "]7aj)GPADL^4U gR,#`ta)R/(h/mYynPt|/TT-n]8Wusd115W$Qo)jWSdRby", "7agr]o?X1j|}u#])3]IvWy5TG?G*DZn#JCEVnL6Vp $k'S0&.N@'(jc=L3!=", "e53d{zSz]%9eFr%itHLs/Azu9gx_Z'*eJxp[DMo,~ H(4Z_5dhG#e,-D9=s3", "#s?Uz]:L#IaGX@tywq`^'cyv^&u>jKB&1[)+ r,V?32;/ iD73K [],>xMus", "flaU&R5{7h$$e*?sP^an]t&W~zJToj1G|7nCP]4[ie-M.F`P=7m:j775t)U+", "(`KKW]'M;zBrJ&s.CspX:x77|v[e~XNF&)R)!auP>25ctyncB(q; yo/H4M_", " AMbLzlAtj-aaw9'buBa'pBve2e)8B_l36OodRtx-M0Vz/XghhKRpIW(}V{:", "5w)0+@MKG<B0 h YokzUX}DNu-{h]F}-UYbID Kha,@GF;QFS}A2ZE`7>Y9|", "Cdm n4YFeL4f@@ K]|(ZZT5_%jQ0xK*ieM6|>k)1a+`'hZq:P5Yow^BnN.zR", "aIL9AI q*vu=ruxNr.uIx7^cqg8&+FMs UO7]Fd?Y~0X(;Moerz@8yYJihGX", "1yfbI{d<F`pLHUox'&ZU:]@7 ,wq{%Ms~+._7r/+B05%#Nva`_Badp>SXO8<", "$&?@2{L=G/`YuN3)G;5z561<aie.kY&geq';ors%!X9Q}hl^]5,=9<smt#!G" }; //Here is the array of strings where you will store //the five characters you get from each line String[] decrypted = new String[22]; //Declare your additional variables here, //and don't forget to seed your Random with 243! //Use your nested for loops and Random .Next to pull 5 //characters from each line for (/*Put parameters here*/) { //Create a temporary string that from the current //line of the data - you don't have to do this, //but it makes it easier from a conceptual standpoint String currentLine = line[?]; //Use your second for loop here to get the appropriate //characters from the currentLine and store them in //your decrypted array. This is where you will need //to use your random .Next method - make sure you set //the range of .Next correctly or you won't get the //right answer! for (/*Put parameters here*/) { } } //Call printIt here //I use this so I can read the message Console.ReadLine(); } static void printIt(/*Put parameters here*/) { //Declare you StringBuilder here //Print the contents of the array you pass to this method //Build your message using a StringBuilder method and the //array of strings you passed to this method //Print the contents of your StringBuilder - this will be the //human readable message! } } }