01 January, 2010

Happy New Year

Happy New Year

 

PHP
  1. echo "Happy New Year";
PYTHON
  1. print("Happy New Year")
C#
  1. Using System;
  2. class Program
  3. {
  4.      static void Main(string[] args)
  5.      {
  6.           Console.WriteLine("Happy New Year");
  7.      }
  8. }
JAVA 
  1. class Program
  2. {
  3.    public static void main(String args[])
  4.    {
  5.         System.out.print("Happy New Year");
  6.    }
  7. }
C
  1. main()
  2. {
  3.     printf("Happy New Year");
  4. }

No comments:

Post a Comment