boolean data type random integer





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















Im trying to create a random number generator and judging the random integers odd or even using a srand call and boolean but i cant figured out how to get it to distinguish properly between whats odd and whats even.



#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>

int i;
int num1;
int num2;

bool isOdd (int num1, int num2);

int main(void)
{
srand(time(NULL));


for (i=1; i <= 10; ++i) {
num1 = rand() % 10 + 1;
num2 = rand() % 10 + 1;
printf("The two random numbers are %u and %un", num1, num2);


bool valueIsOdd = isOdd(num1, num2);

if (valueIsOdd) {
printf("one of these numbers, %u and %u, isOdd.nn", num1, num2);
}
else {
printf("Both of these numbers, %u and %u, are even.nn", num1, num2);
}
}
}

bool isOdd(int num1, int num2)
{
if (num1 % 2 != 0) {
return true;
}
else {
return false;
}

}









share|improve this question


















  • 1





    What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

    – Some programmer dude
    Nov 29 '18 at 5:40













  • Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

    – Jonathan Leffler
    Nov 29 '18 at 5:43






  • 1





    Note that your printf statements do not seem to handle the case in which both numbers are odd.

    – armitus
    Nov 29 '18 at 5:43






  • 1





    why pass two numbers to isOdd() when only one of them will be checked?

    – user3629249
    Nov 29 '18 at 6:12


















0















Im trying to create a random number generator and judging the random integers odd or even using a srand call and boolean but i cant figured out how to get it to distinguish properly between whats odd and whats even.



#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>

int i;
int num1;
int num2;

bool isOdd (int num1, int num2);

int main(void)
{
srand(time(NULL));


for (i=1; i <= 10; ++i) {
num1 = rand() % 10 + 1;
num2 = rand() % 10 + 1;
printf("The two random numbers are %u and %un", num1, num2);


bool valueIsOdd = isOdd(num1, num2);

if (valueIsOdd) {
printf("one of these numbers, %u and %u, isOdd.nn", num1, num2);
}
else {
printf("Both of these numbers, %u and %u, are even.nn", num1, num2);
}
}
}

bool isOdd(int num1, int num2)
{
if (num1 % 2 != 0) {
return true;
}
else {
return false;
}

}









share|improve this question


















  • 1





    What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

    – Some programmer dude
    Nov 29 '18 at 5:40













  • Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

    – Jonathan Leffler
    Nov 29 '18 at 5:43






  • 1





    Note that your printf statements do not seem to handle the case in which both numbers are odd.

    – armitus
    Nov 29 '18 at 5:43






  • 1





    why pass two numbers to isOdd() when only one of them will be checked?

    – user3629249
    Nov 29 '18 at 6:12














0












0








0








Im trying to create a random number generator and judging the random integers odd or even using a srand call and boolean but i cant figured out how to get it to distinguish properly between whats odd and whats even.



#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>

int i;
int num1;
int num2;

bool isOdd (int num1, int num2);

int main(void)
{
srand(time(NULL));


for (i=1; i <= 10; ++i) {
num1 = rand() % 10 + 1;
num2 = rand() % 10 + 1;
printf("The two random numbers are %u and %un", num1, num2);


bool valueIsOdd = isOdd(num1, num2);

if (valueIsOdd) {
printf("one of these numbers, %u and %u, isOdd.nn", num1, num2);
}
else {
printf("Both of these numbers, %u and %u, are even.nn", num1, num2);
}
}
}

bool isOdd(int num1, int num2)
{
if (num1 % 2 != 0) {
return true;
}
else {
return false;
}

}









share|improve this question














Im trying to create a random number generator and judging the random integers odd or even using a srand call and boolean but i cant figured out how to get it to distinguish properly between whats odd and whats even.



#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>

int i;
int num1;
int num2;

bool isOdd (int num1, int num2);

int main(void)
{
srand(time(NULL));


for (i=1; i <= 10; ++i) {
num1 = rand() % 10 + 1;
num2 = rand() % 10 + 1;
printf("The two random numbers are %u and %un", num1, num2);


bool valueIsOdd = isOdd(num1, num2);

if (valueIsOdd) {
printf("one of these numbers, %u and %u, isOdd.nn", num1, num2);
}
else {
printf("Both of these numbers, %u and %u, are even.nn", num1, num2);
}
}
}

bool isOdd(int num1, int num2)
{
if (num1 % 2 != 0) {
return true;
}
else {
return false;
}

}






c random boolean






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 29 '18 at 5:37









Mike BelliveauMike Belliveau

1




1








  • 1





    What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

    – Some programmer dude
    Nov 29 '18 at 5:40













  • Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

    – Jonathan Leffler
    Nov 29 '18 at 5:43






  • 1





    Note that your printf statements do not seem to handle the case in which both numbers are odd.

    – armitus
    Nov 29 '18 at 5:43






  • 1





    why pass two numbers to isOdd() when only one of them will be checked?

    – user3629249
    Nov 29 '18 at 6:12














  • 1





    What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

    – Some programmer dude
    Nov 29 '18 at 5:40













  • Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

    – Jonathan Leffler
    Nov 29 '18 at 5:43






  • 1





    Note that your printf statements do not seem to handle the case in which both numbers are odd.

    – armitus
    Nov 29 '18 at 5:43






  • 1





    why pass two numbers to isOdd() when only one of them will be checked?

    – user3629249
    Nov 29 '18 at 6:12








1




1





What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

– Some programmer dude
Nov 29 '18 at 5:40







What's supposed to happen with your program? For some example numbers, what is the expected output and what is the actual output? Please take some time to read about how to ask good questions, as well as this question checklist.

– Some programmer dude
Nov 29 '18 at 5:40















Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

– Jonathan Leffler
Nov 29 '18 at 5:43





Your printing doesn't explicitly cover the case where both numbers are odd. You could say "At least one of these numbers is odd". Or deal with it another way.

– Jonathan Leffler
Nov 29 '18 at 5:43




1




1





Note that your printf statements do not seem to handle the case in which both numbers are odd.

– armitus
Nov 29 '18 at 5:43





Note that your printf statements do not seem to handle the case in which both numbers are odd.

– armitus
Nov 29 '18 at 5:43




1




1





why pass two numbers to isOdd() when only one of them will be checked?

– user3629249
Nov 29 '18 at 6:12





why pass two numbers to isOdd() when only one of them will be checked?

– user3629249
Nov 29 '18 at 6:12












2 Answers
2






active

oldest

votes


















0














You are only checking one number in the function isOdd. You need to check both numbers.



if ((num1 % 2 != 0) || (num2 %2 !=0)) {
return true;
}
else {
return false;
}


Or, you can check for both even and make the code a bit cleaner.



if ((num1 % 2 == 0) && (num2 %2 ==0)) {
return false;
}
else {
return true;
}





share|improve this answer





















  • 1





    Or plain return num1 % 2 != 0 || num1%2 !=0;

    – Some programmer dude
    Nov 29 '18 at 5:42











  • You tested num1 twice and forgot num2...

    – Joël Hecht
    Nov 29 '18 at 6:21



















0














I understand your question.
u are asking that to differentiate from the two number which is odd right.
The main purpose of the bool is to represent either 1 or 0 why to use char consists of 8 bits.
If u want to check 1 number use bool datatype.
Otherwise if u want to know two number of all possible results better go with char datatype.



Here u have two numbers.4 possibility.



        number 1         number 2
1 odd even
2 even odd
3 even even
4 odd od


if ((num1 % 2 != 0) && (num2 % 2 == 0)) {
return 1;
}
else if ((num1 % 2 == 0) && (num2 % 2 != 0)) {
return 2;
}
else if ((num1 % 2 == 0) && (num2 % 2 == 0)) {
return 3;
}
else {
return 4;
}





share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53532499%2fboolean-data-type-random-integer%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You are only checking one number in the function isOdd. You need to check both numbers.



    if ((num1 % 2 != 0) || (num2 %2 !=0)) {
    return true;
    }
    else {
    return false;
    }


    Or, you can check for both even and make the code a bit cleaner.



    if ((num1 % 2 == 0) && (num2 %2 ==0)) {
    return false;
    }
    else {
    return true;
    }





    share|improve this answer





















    • 1





      Or plain return num1 % 2 != 0 || num1%2 !=0;

      – Some programmer dude
      Nov 29 '18 at 5:42











    • You tested num1 twice and forgot num2...

      – Joël Hecht
      Nov 29 '18 at 6:21
















    0














    You are only checking one number in the function isOdd. You need to check both numbers.



    if ((num1 % 2 != 0) || (num2 %2 !=0)) {
    return true;
    }
    else {
    return false;
    }


    Or, you can check for both even and make the code a bit cleaner.



    if ((num1 % 2 == 0) && (num2 %2 ==0)) {
    return false;
    }
    else {
    return true;
    }





    share|improve this answer





















    • 1





      Or plain return num1 % 2 != 0 || num1%2 !=0;

      – Some programmer dude
      Nov 29 '18 at 5:42











    • You tested num1 twice and forgot num2...

      – Joël Hecht
      Nov 29 '18 at 6:21














    0












    0








    0







    You are only checking one number in the function isOdd. You need to check both numbers.



    if ((num1 % 2 != 0) || (num2 %2 !=0)) {
    return true;
    }
    else {
    return false;
    }


    Or, you can check for both even and make the code a bit cleaner.



    if ((num1 % 2 == 0) && (num2 %2 ==0)) {
    return false;
    }
    else {
    return true;
    }





    share|improve this answer















    You are only checking one number in the function isOdd. You need to check both numbers.



    if ((num1 % 2 != 0) || (num2 %2 !=0)) {
    return true;
    }
    else {
    return false;
    }


    Or, you can check for both even and make the code a bit cleaner.



    if ((num1 % 2 == 0) && (num2 %2 ==0)) {
    return false;
    }
    else {
    return true;
    }






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Nov 29 '18 at 6:39

























    answered Nov 29 '18 at 5:41









    Rishikesh RajeRishikesh Raje

    5,6221828




    5,6221828








    • 1





      Or plain return num1 % 2 != 0 || num1%2 !=0;

      – Some programmer dude
      Nov 29 '18 at 5:42











    • You tested num1 twice and forgot num2...

      – Joël Hecht
      Nov 29 '18 at 6:21














    • 1





      Or plain return num1 % 2 != 0 || num1%2 !=0;

      – Some programmer dude
      Nov 29 '18 at 5:42











    • You tested num1 twice and forgot num2...

      – Joël Hecht
      Nov 29 '18 at 6:21








    1




    1





    Or plain return num1 % 2 != 0 || num1%2 !=0;

    – Some programmer dude
    Nov 29 '18 at 5:42





    Or plain return num1 % 2 != 0 || num1%2 !=0;

    – Some programmer dude
    Nov 29 '18 at 5:42













    You tested num1 twice and forgot num2...

    – Joël Hecht
    Nov 29 '18 at 6:21





    You tested num1 twice and forgot num2...

    – Joël Hecht
    Nov 29 '18 at 6:21













    0














    I understand your question.
    u are asking that to differentiate from the two number which is odd right.
    The main purpose of the bool is to represent either 1 or 0 why to use char consists of 8 bits.
    If u want to check 1 number use bool datatype.
    Otherwise if u want to know two number of all possible results better go with char datatype.



    Here u have two numbers.4 possibility.



            number 1         number 2
    1 odd even
    2 even odd
    3 even even
    4 odd od


    if ((num1 % 2 != 0) && (num2 % 2 == 0)) {
    return 1;
    }
    else if ((num1 % 2 == 0) && (num2 % 2 != 0)) {
    return 2;
    }
    else if ((num1 % 2 == 0) && (num2 % 2 == 0)) {
    return 3;
    }
    else {
    return 4;
    }





    share|improve this answer




























      0














      I understand your question.
      u are asking that to differentiate from the two number which is odd right.
      The main purpose of the bool is to represent either 1 or 0 why to use char consists of 8 bits.
      If u want to check 1 number use bool datatype.
      Otherwise if u want to know two number of all possible results better go with char datatype.



      Here u have two numbers.4 possibility.



              number 1         number 2
      1 odd even
      2 even odd
      3 even even
      4 odd od


      if ((num1 % 2 != 0) && (num2 % 2 == 0)) {
      return 1;
      }
      else if ((num1 % 2 == 0) && (num2 % 2 != 0)) {
      return 2;
      }
      else if ((num1 % 2 == 0) && (num2 % 2 == 0)) {
      return 3;
      }
      else {
      return 4;
      }





      share|improve this answer


























        0












        0








        0







        I understand your question.
        u are asking that to differentiate from the two number which is odd right.
        The main purpose of the bool is to represent either 1 or 0 why to use char consists of 8 bits.
        If u want to check 1 number use bool datatype.
        Otherwise if u want to know two number of all possible results better go with char datatype.



        Here u have two numbers.4 possibility.



                number 1         number 2
        1 odd even
        2 even odd
        3 even even
        4 odd od


        if ((num1 % 2 != 0) && (num2 % 2 == 0)) {
        return 1;
        }
        else if ((num1 % 2 == 0) && (num2 % 2 != 0)) {
        return 2;
        }
        else if ((num1 % 2 == 0) && (num2 % 2 == 0)) {
        return 3;
        }
        else {
        return 4;
        }





        share|improve this answer













        I understand your question.
        u are asking that to differentiate from the two number which is odd right.
        The main purpose of the bool is to represent either 1 or 0 why to use char consists of 8 bits.
        If u want to check 1 number use bool datatype.
        Otherwise if u want to know two number of all possible results better go with char datatype.



        Here u have two numbers.4 possibility.



                number 1         number 2
        1 odd even
        2 even odd
        3 even even
        4 odd od


        if ((num1 % 2 != 0) && (num2 % 2 == 0)) {
        return 1;
        }
        else if ((num1 % 2 == 0) && (num2 % 2 != 0)) {
        return 2;
        }
        else if ((num1 % 2 == 0) && (num2 % 2 == 0)) {
        return 3;
        }
        else {
        return 4;
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 29 '18 at 6:55









        Ramya MuralidharanRamya Muralidharan

        995




        995






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53532499%2fboolean-data-type-random-integer%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Contact image not getting when fetch all contact list from iPhone by CNContact

            count number of partitions of a set with n elements into k subsets

            A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks