My Linux Stuff - Complete Blog For Linux Articles

My Linux Stuff - Complete Blog For Linux Articles

A Website For Complete Linux OS,Step by Step linux Installtion, Linux Tips and Tricks and Linux Stuff and so on... Connect and sharing here....

Subscribe Now!

Enter your email address:

Friday, January 6, 2012

AMDI Technology

AMDI Technology Reached 135 countries Thanks Website Users...

Palindrome Program in C#

How to Write a Palindrome Programme using C# ? using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program{ static void Main(string[] args) { string str=string .Empty ; Console.WriteLine("Enter a String"); string s = Console.ReadLine(); int i = s.Length; //we can get the Length of string by using Length Property for (int j=i -1; j >= 0; j--) { str = str + s[j ]; } if (str == s) { Console.WriteLine(s...

Related Posts Plugin for WordPress, Blogger...