AUTO TRENDS

You can get the latest Automobile new's and the latest and upcoming models of BMW,Mercedez Benz,Toyota,Hyundai,Tata..
Popular Technology Articles

Get Latest Tech News, Updates

File: Create a program for which out put wil be the same program

Posted by Tharadas179 Tuesday, June 23, 2009

import java.util.*;
import java.io.*;
class Syam
{
public static void main(String args[])throws Exception
{
PrintWriter pw=new PrintWriter(System.out,true);
Scanner sc=new Scanner(new File("Syam.java"));
String s=null;
try
{
while((s=sc.nextLine())!=null)
{
pw.println(s);
}
}
catch(Exception e)
{
}
}
}

0 comments

Post a Comment