Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: parity

  1. #1
    Junior Member
    Join Date
    Sep 2017
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default parity

    A bit string has odd parity if the number of 1's is odd. A bit string has even parity if the number of 1's is even. Zero is considered to be an even number, so a bit string with no 1's has even parity. Note that the number of 0's does not affect the parity of a bit string.
    Input File: parity.in The input consists of one or more strings, each on a line by itself, followed by a line containing only "#" that signals the end of the input. Each string contains 1–31 bits followed by either a lowercase letter 'e' or a lowercase letter 'o'.
    Output: Each line of output must look just like the corresponding line of input, except that the letter at the end is replaced by the correct bit so that the entire bit string has even parity (if the letter was 'e') or odd parity (if the letter was 'o').
    Sample Input Sample Output
    101e 1010
    010010o 0100101
    1e 11
    000e 0000
    110100101o 1101001010
    #





    * i try to solve it but its dosent work*
    Attached Images Attached Images

  2. #2
    Junior Member
    Join Date
    Sep 2017
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: parity

    t just start in this way this is right??
    how can i complete1Capture.jpg

  3. #3
    Member John Joe's Avatar
    Join Date
    Jun 2017
    Posts
    277
    My Mood
    Amused
    Thanks
    8
    Thanked 19 Times in 19 Posts

    Default Re: parity

    Please don't post your code as image.The image is too small.
    Whatever you are, be a good one

  4. #4
    Junior Member
    Join Date
    Sep 2017
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: parity

    [/COLOR]how can i do it I am new here

  5. #5
    Member John Joe's Avatar
    Join Date
    Jun 2017
    Posts
    277
    My Mood
    Amused
    Thanks
    8
    Thanked 19 Times in 19 Posts

    Default Re: parity

    Just post the code here

    Example

    public class Test{
         public static void main(String[] args)
        {
              // your code
        }
    }

    Use [CODE] tags to wrap your code.
    Last edited by John Joe; October 6th, 2017 at 11:09 AM.
    Whatever you are, be a good one

Tags for this Thread