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;
}
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
add a comment |
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
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 toisOdd()
when only one of them will be checked?
– user3629249
Nov 29 '18 at 6:12
add a comment |
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
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
c random boolean
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 toisOdd()
when only one of them will be checked?
– user3629249
Nov 29 '18 at 6:12
add a comment |
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 toisOdd()
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
add a comment |
2 Answers
2
active
oldest
votes
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;
}
1
Or plainreturn num1 % 2 != 0 || num1%2 !=0;
– Some programmer dude
Nov 29 '18 at 5:42
You testednum1
twice and forgotnum2
...
– Joël Hecht
Nov 29 '18 at 6:21
add a comment |
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;
}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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;
}
1
Or plainreturn num1 % 2 != 0 || num1%2 !=0;
– Some programmer dude
Nov 29 '18 at 5:42
You testednum1
twice and forgotnum2
...
– Joël Hecht
Nov 29 '18 at 6:21
add a comment |
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;
}
1
Or plainreturn num1 % 2 != 0 || num1%2 !=0;
– Some programmer dude
Nov 29 '18 at 5:42
You testednum1
twice and forgotnum2
...
– Joël Hecht
Nov 29 '18 at 6:21
add a comment |
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;
}
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;
}
edited Nov 29 '18 at 6:39
answered Nov 29 '18 at 5:41
Rishikesh RajeRishikesh Raje
5,6221828
5,6221828
1
Or plainreturn num1 % 2 != 0 || num1%2 !=0;
– Some programmer dude
Nov 29 '18 at 5:42
You testednum1
twice and forgotnum2
...
– Joël Hecht
Nov 29 '18 at 6:21
add a comment |
1
Or plainreturn num1 % 2 != 0 || num1%2 !=0;
– Some programmer dude
Nov 29 '18 at 5:42
You testednum1
twice and forgotnum2
...
– 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
add a comment |
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;
}
add a comment |
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;
}
add a comment |
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;
}
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;
}
answered Nov 29 '18 at 6:55
Ramya MuralidharanRamya Muralidharan
995
995
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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