5 Posted Topics
I have sort ip addressess input like this- 19.19.18.0/24 19.19.19.0/24 18.0.0.0/8 198.19.0.0/16 198.19.19.0/24 199.19.19.0/24 want output like 18.0.0.0/8 198.19.0.0/16 198.19.19.0/24 199.19.19.0/24 19.19.18.0/24 19.19.19.0/24 i used this but not working properly public int compare(WSAPolicy NwsaPolicy1, WSAPolicy NwsaPolicy2) { byte[] ba1 = NwsaPolicy1.getIdentity().getName().trim().getBytes(); byte[] ba2 = NwsaPolicy2.getIdentity().getName().trim().getBytes(); if(ba1.length < ba2.length) return -1; …
- I have a number of player. - For each player i have to maintain 2D array how will do that in java i have no idea can you please help me.
- Actually i am developing music housie game and there is a condition that until 97 songs are not played housie not be completed. -And songs are played sequencly. - So i am doing is that put 97 number in ticket (every songs have a number ) but there is …
-There is series like - 7,7,7,8,7,7,8,8,8,7,7,7,7,7,8,8,8,8,7 -Find out occurence of 7 Output- 4 -Find out occurence of 8 Output- 3 -Maximum Occurence of 7 in one time- 5 Maximum Occurence of 8 in one time- 4
There is series of 20 numbers composed by two numbers is given like 9876,7698,7676,9898,987698,769876 Develop a logic in java to find out these two numbers series composed by First number is - 98 Second is-76 How to develop a logic Another series - 1213,121312,1313,1212,12131213 First Number-12 Second Number-13
The End.
anita_2