Skip to main content

Rail Fence Technique Cryptography program in c sharp #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication6
{
    class Program
    {
        public static string s = "",s2="";
        public static int i = 0;
        static void Main(string[] args)
        {
            int ch = 1;
            while (ch == 1 || ch == 2)
            {
                Console.WriteLine("Enter 1 for cipher "+"\n"+"Enter 2 for decipher ");
                ch = Convert.ToInt32(Console.ReadLine());
                if (ch == 1)
                    cipher();
                else
                    decipher();

            }
            Console.ReadKey();

        }
        static void cipher()
        {
            Console.WriteLine("Enter plain text");
            s = Console.ReadLine();
          s2 = "";
            string  s3 = "";
            for (i = 0; i < s.Length; i+=2)
            {
                s2 = s2 + s[i];
                if ((i + 1) != s.Length)
                    s3 = s3 + s[i+1];
            }
            s2 = s2 + s3;
            Console.WriteLine("The cipher text is "+s2);
        }
        static void decipher()
        {
            Console.WriteLine("Enter a cipher text");
            s = Console.ReadLine();
          s2 = "";
            int l = (s.Length + 1) / 2;
            for (i = 0; i < l; i++)
            {
                s2 = s2 + s[i];
                if((l+i)<s.Length)
                   s2+= s[l + i];
            }
         
            Console.WriteLine(s2);

        }
    }
}

Comments

Popular posts from this blog

PROGRAM TO PRINT COLOURS OF RAINBOW ACCORDING TO THE NO. INPUTTED BY THE USER

#include,stdio.h> #include<conio.h> void main() { int ch; printf("INPUT A NUMBER\n"); scanf("%d",&ch); switch(ch) { case 6: printf("Red"); break; case 5 : printf(" Orange"); break; case 4 : printf(" Yellow"); break; case 3 : printf(" Green"); break; case 2 : printf(" Blue"); break; case 1 : printf(" Indigo"); break; case 0 : printf(" Violet"); break; default : ("wrong input "); } } SIMPLE PROGRAMS FIND TYPE OF THE TRIANGLE TEMPERATURE CONVERSION COMMISSION OF A SALESMAN PRINT NUMBERS IN DESCENDING ORDER BIGGEST NUMBER AMONG THREE NUMBERS CALCULATE DIVISION A YEAR IS LEAP OR NOT A NUMBER IS ODD OR EVEN PRINT THE SQUARE ROOT ELSE PRINT N TO THE POWER 5 PRINT A NEW NUMBER BY ADDING 1 TO EACH DIGIT OF THE NUMBER PRINT THE NO. OF CURRENCY NOTES ACCORDING TO THE AMOUNT ENTERED DATA STRUCTURES ENTER DETAILS OF A STUDENT ENTER DETAILS OF A ST...

unix commands

 

Baby doge paws

Baby doge paws link 🎉 Join the BabyDoge PAWS Clicker adventure! Solve challenges, join daily events, and invite friends. Stay tuned for the token airdrop! 🐾 🌟 Earn 10k PAWS as a welcome bonus 🌟 Get 25k PAWS with Telegram Premium https://t.me/BabyDogePAWS_Bot?start=r_6394860582