Computer Science, asked by Anonymous, 1 year ago

*️⃣ HELLO GUYS *️⃣

#Computer Science Question

*️⃣ Write a program, input number & find out even or not *️⃣

❎ IT'S A REQUEST PLEASE DON'T SPAM ❎

*️⃣ ANSWER IF YOU KNOW ‼️


UnknownDude: Is this for Java?
UnknownDude: Bruh, just making sure - this is a Java question, right?
Anonymous: Nope it's C++

Answers

Answered by AJAYMAHICH
0
#include <stdio.h>
int main()

{

int number;

printf("Enter an integer: ");

scanf("%d", &number);

// True if the number is perfectly divisible by 2

if(number % 2 == 0)

printf("%d is even.", number);

else printf("%d is odd.", number);

return 0;

}

Anonymous: It's a que of C++
Anonymous: I guess it's not correct!
AJAYMAHICH: C ka bhi ho skta h ?? ye question
Anonymous: C++ ka hi que hai bro
AJAYMAHICH: chill method alag alag hote h sb languages me
AJAYMAHICH: question same hota h
Anonymous: Pta hai..
Anonymous: But..
Answered by MrTSR
4
See the attachment ..
Attachments:
Similar questions