Computer problems,Computer help
*AX SOFT>>>Programming & Design

I have problem with StreamToken that get data from keyboard at the same line at the time?


How I write the program by using Streamtoken to get each data from the keyboard at the same line .
example,
I want to get 10 data (type int )from keyboard that key in same line each data how to using streamtoken to get each number put in the array and calculate something after that.

Instead of StreamToken, how about leveraging BufferedReader along with Integer.parseInt():

public static void main(String[] args) throws Exception
{
int[] a = new int[10];
int counter = 0;
int sum = 0;

while (counter < 10){
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String number = br.readLine();

if (StringUtils.isNumeric(number) && Integer.parseInt(number) > 0)
{
a[counter] = Integer.parseInt(number);
counter++;
}
}
for (int i = 0; i < a.length; i++)
{
int number = a[i];
sum += number;
}

System.out.println("Average = " + (double) sum / a.length);
}

Tags
  General - Computers & Internet   Software   Security   Programming & Design   Facebook   Flickr   Google   MSN   MySpace
Related information
  • Is there a free program i can use to make a basic social network for my school?

    You could use the following: Ning - ...

  • Here's a riddle, and also a JCreator/Java Programing question.?

    Its the common multiple of all of them. The condition works for all students in that position. Ex. The 1st 5th student will have sunglasses. The 4th 5th student will also have sunglasses...

  • Creating a Gadge on Windows Vista.?

    You can make gadgets????????? Cool, I was wonderin why they had no good ones to download

    ...
  • Do i hav to jail break my ipod touch to get ibeer and all those other apps?

    Yeah You Have To Jailbreak It. Its Actually Really Simple. Theres A Website That Does It For You. And It Has Yet To Give Me A Viruis And It Has Some Cool Features. The iBeer thing though is a v...

  • Can any one recomend a free web hosting company that dont give you a website builder that sopport full HTML.?

    If you are serious about websites either for personal or your business, don't go to free web hosting as they are usually not reliable and you may end up losing all your hard work. Free web hos...

  • Button (link)?

    If you host the button image on another site, use this code: <a href="URL_to_other_page" title="ToolTip Description"><img src="URL_to_image" style="wi...

  • What programs do I need to be a graphic designer? Do I just need the adobe creative suite? Or are there more?

    ...

  • Help in c++ program?

    You aren't very specific with your request. How will the numbers be input (e.g. entered at the console, constant array, from a file) into the program? Any particular number format (e.g. inte...

  •  

    Categories--Copyright/IP Policy--Contact Webmaster