Note:- Study this program and follow the given instruction and type execute the code and also give output for this java program as soon as possible.  Modify example six to read file tooutfile2.txt compute and display the total. Then write the total to a file named tooutfile2A.txt exampleSix This program creates file tooutfile2.txt and stores 10 integers in it   Please verify that the file was created along with the content       package pwriter2;   import java.util.Scanner; import java.io.*;   public class Pwriter2 {           public static void main(String[] args) throws IOException     {      PrintWriter  tofile2 = new PrintWriter( "tooutfile2.txt" );        int i = 0;      while (i < 10){       tofile2.println( i  );       i = i + 1;     }           tofile2.close();     }     }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section8.5: A Case Study: Pollen Count File Update
Problem 3E
icon
Related questions
Topic Video
Question
  • Note:- Study this program and follow the given instruction and type execute the code and also give output for this java program as soon as possible. 
  • Modify example six to read file tooutfile2.txt compute and display the total. Then write the total to a file named tooutfile2A.txt

exampleSix

This program creates file tooutfile2.txt and stores 10 integers in it

 

Please verify that the file was created along with the content

 

 

 

package pwriter2;

 

import java.util.Scanner;

import java.io.*;

 

public class Pwriter2 {

 

   

    public static void main(String[] args) throws IOException

    {

     PrintWriter  tofile2 = new PrintWriter( "tooutfile2.txt" );

 

     int i = 0;

     while (i < 10){

      tofile2.println( i  );

      i = i + 1;

    } 

         tofile2.close();

    }

   

}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning