go to previous page   go to home page   go to next page highlighting

Answer:

Yes.


Modified Program

Use the standard error output stream to send dialog to the monitor. Characters sent to standard error appear on the monitor (even when output is redirected to a disk file).

Use System.err.println() to send characters to standard error and System.out.println() to send characters to standard output (which will be a disk file when redirection is used.)


import java.util.Scanner;
public class DiscountErr
{
  public static void main ( String[] args ) 
  {
    int listPrice;
    int discount;
    int discountPrice;

    Scanner scan = new Scanner( System.in );

    System.err.print("Enter list price in cents: ");      // print prompt on monitor
    listPrice = scan.nextInt();
    System.out.println("Price in cents: " + listPrice );  // echo to standard output

    System.err.print("Enter discount in percent: ");      // print prompt on monitor
    discount = scan.nextInt();
    System.out.println("Discount: " + discount );         // echo  to standard output

    discountPrice = listPrice - (listPrice*discount)/100 ;

    System.out.println( "Discount Price: " + discountPrice );    // send to disk file
    System.err.println( "Discount Price: " + discountPrice );    // send to monitor
  }
}

QUESTION 13:

Can the user pick any file name for the redirected output?


go to previous page   go to home page   go to next page