count occourance no of time no between 0 to 9 given by user in java

count occourance no of time no between 0 to 9 given by user in java

import java.io.*; class count_no { public static void main(String args[]) { try { int [] size=new int[9]; int i,temp=0; DataInputStream dis=new DataInputStream(System.in);

           for(i=0;i<9;i++)
            {
                    int no=Integer.parseInt(dis.readLine());

                    if(no==1)
                     {
                                   temp++;
                     }

                  else if(no==2)
                   {
                        temp++;
                   }
             }System.out.println(temp);     

        }catch(Exception e){}               
     }

}

View Answers

October 12, 2012 at 8:25 PM

thanks


October 8, 2012 at 4:23 PM

Here is a java example that accepts 9 integers from the user and count the occurrence of each integer.

import java.util.*;

public class CountNumberFrequency {
               public static void main(String[] args) {
                Scanner input = new Scanner(System.in);
                int[] arr = new int[9];
                System.out.println("Enter numbers:");
                for (int i = 0; i < arr.length; i++) {
                     arr[i] = input.nextInt();
                }
                Map<Integer, Integer> map = new HashMap<Integer, Integer>();
        for (int i = 0; i < arr.length; i++) {
            int key = arr[i];
            if (map.containsKey(key)) {
                int occurrence = map.get(key);
                occurrence++;
                map.put(key, occurrence);
            } else {
                map.put(key, 1);
            }
        }

        Iterator iterator = map.keySet().iterator();
        while (iterator.hasNext()) {
            int key = (Integer) iterator.next();
            int occurrence = map.get(key);

            System.out.println(key + " : " + occurrence + " times.");
        }
    }
}









Related Tutorials/Questions & Answers:
count occourance no of time no between 0 to 9 given by user in java
count occourance no of time no between 0 to 9 given by user in java  ... example that accepts 9 integers from the user and count the occurrence of each...(System.in); for(i=0;i<9;i
what is the difference between productList==null and productList.size()==0
what is the difference between productList==null and productList.size()==0  what is the difference between productList==null and productList.size()==0? here productList is of type LIST
Advertisements
if i run this prog, i got exeption in thread "main" java.lang.ArrayIndexOutOfBoundsException:0 at Maxof2.main(Maxof2.java:9), whats the resolution for ths?
" java.lang.ArrayIndexOutOfBoundsException:0 at Maxof2.main(Maxof2.java:9), whats the resolution for ths... int i = Integer.parseInt(args[0]); int j = Integer.parseInt(args[1]); if(i..., ArrayIndexOutOfBoundsException:0 means that you haven't specify the arguments along
days between two given dates using PHP
days between two given dates using PHP  How can we know the number of days between two given dates using PHP?   Hi friends, Example...;"; // Number of days in between to given date in php $days = (strtotime
Java file line count
Java file line count In the section, you will learn how to count the number of lines from the given file. Description of code: Java has provide various... count = 0; File f = new File("C:/data.txt"); Scanner input = new Scanner(f
Finding the longest word in a user given string
Finding the longest word in a user given string  In java, accept a string from the user and find the longest word in it.   The given code...; } else{ return st2; } } LongestWord(){ String word = ""; for(int i=0;i<
Java count frequency of words in the string
Java count frequency of words in the string. In this tutorial, you will learn how to count the occurrence of each word in the given string. String...]+" "; } str = str.toLowerCase(); int count = -1; for (int i = 0; i
calculate difference between two time in jsp
calculate difference between two time in jsp  How to calculate difference between two dates
ModuleNotFoundError: No module named 'py-time-between'
ModuleNotFoundError: No module named 'py-time-between'  Hi, My... named 'py-time-between' How to remove the ModuleNotFoundError: No module named 'py-time-between' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'py-time-between'
ModuleNotFoundError: No module named 'py-time-between'  Hi, My... named 'py-time-between' How to remove the ModuleNotFoundError: No module named 'py-time-between' error? Thanks   Hi, In your python
Count the character in java
Count the character in java  Write a java program to count the character ââ?¬Ë?aââ?¬â?¢ typed by the user in a paragraph by implementing thread.   Count characters by implementing thread import java.util.*; class
count in java - Java Beginners
, count of frmale is 20. what's code in java to select count from database where...count in java  Hello javamania.... i want to ask something like... is 20. i have JFrame Form(jTextField,jLabel,jButton), i want to get count
java 9 32 bit download
java 9 32 bit download  Hi, I am trying to install JDK..., and then contact software publisher. What is this issue? How o get get Java 9 32 Bit... be able to install JDK 9. Thanks   Hi, Chief Java Architect Mark
Get Date and Time
current date and time in the user given format. To do all this we have first...;How to get date and time in Java?":ADS_TO_REPLACE_1... Get Date and Time   
time
time  how to find the current system time between the user login and logout using java
JAVA leftshift operator add 1 instead of 0
JAVA leftshift operator add 1 instead of 0  Hi Guys, I have a task... on that, it adds "0" on left side of value. For example, view plaincopy... this, 5 as binary : 0101 1st time left shift: 01010 2nd time left shift: 010100
Java 9 Features
Java 9 Features: First version of Java 9 Features announced The plan... features list of Java 9 on August 18, 2014. The first set of Java Enhancement... the development of JDK 9. Here is the details of the first set of Java 9 features: Here
letter count problem - Java Beginners
letter count problem  i have a problem in my java coding to count two characters of a string. eg to count the letter "ou" in the string "How do... s.equals("") ? 0 : s.charAt(0) == cc ? 1 + countCharset(s.substring(1
Java Time Zone Example
Java Time Zone Example       Converting time between time zones In this section we have written a java program which will take two Time Zone IDs as its argument and then convert
Display PHP clock with user input date and time
Display PHP clock with user input date and time  The following PHP code displays a clock with current date and time. I want the clock to receive user... "Date: ".$aa[0]; echo "</br>"; echo "Time: " .$aa[1]; die
Can u print in turbo c 9 8 7 6 5 4 3 2 1 0 using pre increment operator Only use print ++a in the same printf() command ten times)
Can u print in turbo c 9 8 7 6 5 4 3 2 1 0 using pre increment operator Only use print ++a in the same printf() command ten times)  Can u print in turbo c 9 8 7 6 5 4 3 2 1 0 using pre increment operator Only use print
How to find out the friend user between two columns in sql database
How to find out the friend user between two columns in sql database  Hi, Can any one please tell me ..how to find out the friend user between two columns in sql database? In other words i wanted to get the corresponding data from
Can u print in turbo c 9 8 7 6 5 4 3 2 1 0 using pre increment operator Only use print ++a in the same printf() command ten times)
Can u print in turbo C  Can u print in turbo c 9 8 7 6 5 4 3 2 1 0 using pre increment operator Only use print ++a in the same printf() command ten times
Java 9 Tutorial, news and examples
News, articles and example of the Java 9 Programming Language After... of the Java 9 programming Language. Here we will be discussing about the news, articles and example of the proposed Java 9 Language. Java 9 is going
return 0 vs exit 0
return 0 vs exit 0  what is the difference between return 0 and exit 0 in c? i could not find any difference in their behaviour (both terminates the process execution) in a program
Nb hours between 2 time stamps meets specific criteria
Nb hours between 2 time stamps meets specific criteria  sql - I have 2 columns with time stamps and 2 empty columns, named DAYHOURS AND NIGHTHOURS. I want to update DAYHOURS and NIGHTHOURS with Number of hours fall under - 06:00
ArrayIndexOutOfBoundsException: 0
) Java Result: 1 BUILD SUCCESSFUL (total time: 0 seconds) here is my code...ArrayIndexOutOfBoundsException: 0  I'am a newbie to java, i have...; ether.dst_mac=new byte[]{(byte)0,(byte)6,(byte)7,(byte)8,(byte)9
Count characters from text file in Java
is a java code that count the occurrence of each character from text file. import...++){ char ch= third[counter]; int count=0; for ( int i=0; i<third.length; i++){ if (ch==third[i]) count++; } boolean flag=false; for(int j=counter-1;j>=0;j
Ask java count
Ask java count  Good morning, I have a case where there are tables... | Java 1 | 10 | | b002 | beginner java | 5 | | b003 | advanced java book | 26 | | b004 | MySQL 1
How can we know the number of days between two given dates using PHP?
How can we know the number of days between two given dates using PHP?  How can we know the number of days between two given dates using PHP
Day for the given Date in Java
Day for the given Date in Java  How can i get the day for the user input data ?   Hello Friend, You can use the following code:ADS_TO_REPLACE_1 import java.util.*; import java.text.*; class CheckDay{ public static
count asterisk in a grid - Java Beginners
count asterisk in a grid  I need to write a program that uses a recursive method to count the number of asterisk in a square grid
Time validation
. If the user enters the time in wrong format, it displays the error message. <... || hour > 23) { alert("Hour must be between 1 and 12. (or 0 and 23 for military time)"); document.frm.timetext.value=""; return false; } if (minute<0
user input in java - Java Beginners
static void main(String[] args) { double number; int count = 0... = scan.nextDouble(); while (number != 0) { total = total + number; count...user input in java   i am trying to write a code to compute
Java count files in a directory
Java count files in a directory In this section, you will learn how to count... count = 0; for (File file : f.listFiles()) { if (file.isFile... in the given example, we have created an instance of File class and specify a directory
java code for given query
java code for given query  i am not able to display to display graph in all browsers it is only displaying in ie using java
Java: Some problems in given condition
Java: Some problems in given condition   SIR, I want to get the values from the table( database), if any one of the column of the table value is 0. Then one alert should b printed in application using Java. If(att.getdata1()==0
PHP Array Count Values
array_count_values() function to count the number of variables.  General description of array_count_values() is given below:ADS_TO_REPLACE_1...PHP Array Count Values  Sometimes  we need to count the number
Java count vowels
Java count vowels In this section you will learn how to count the number... count=0; System.out.print("Vowel are = "); for(int i=0... and then you will get the number of vowels count. Description of code : In this code
how to count words in string using java
: "); String st=input.nextLine(); int count=0... count=0; String arr[]=st.split(" "); System.out.println("Number...how to count words in string using java  how to count words in string
Java program to generate the total count
Java program to generate the total count  I need a java program which would take a text file as an input and scans through it to generate the output.... END OF TEXT FILE The output required is: Oranges:8 Apples:14 Bananas:0
Java Count Vowels
Java Count Vowels       In this program you will learn how to count vowels in a String. Here you.... Then we have taken a variable- count = 0. Now, we have applied a loop here which
Count number of "*"
:"); String text = bf.readLine(); int count = 0; for (int i = 0; i...Count number of "*"  I have this code to count the number of * from...); if (c=='*' ) { count
diff between spring and struts in java
diff between spring and struts in java  diff between spring and struts in java
difference between hashcode,reference in java
difference between hashcode,reference in java  difference between hashcode,reference in java
Maven dependency for com.cedarsoft - open version 9 is released. Learn to use open version 9 in Maven based Java projects
- open version 9 ) in their Java project if it is based on Maven and Gradle. How...; com.cedarsoft - open version 9 in Java projects. Follow the step by step tutorial... and includes  com.cedarsoft - open version 9 java library in your project
PHP Array Count
: the array to be count mode: 0 (by default) or 1 for COUNT_RECURSIVE...;; $b=array(0=>0,3=>4); print_r($b);ADS_TO_REPLACE_5 $count=count($b...=array(0=>0,3=>4); print_r($b);ADS_TO_REPLACE_10 $count=sizeof($b
Count number of occurences and print names alphabetically in Java
Count number of occurences and print names alphabetically in Java  I... for the printCount() method for the code to count the number of occurences of each... i=0;i<st.length;i++){ str+=st[i
Java Get Time in MilliSeconds
Java Get Time in MilliSeconds   ... the particular time, go through the below given example that illustrate how to get..._TO_REPLACE_1     Java Syntax to get time in millisecondsADS
Count Characters from the input string Java
Count Characters from the input string of Java In this section, you will learn how to count the occurrence of each character in the string. For this, we have...; char ch= third[counter];   int count=0;  

Ads