Computer Science, asked by Juned9772, 1 year ago

Explain the meaning of each of the following lines in the context of programming:. (1) int I;
Int remain, even odd=31;
(2) remain= evenodd %2;
(3) if (remain==0) (4) printf(" The Number is an EVEN number");
(5)else printf(The Number is an ODD number");

Answers

Answered by madhu4147
1

Answer:

you are giving flow chart type answer

Explanation:

  1. inter means 'whole numbers will called as into in case language
  2. remainder gives to modular division (%)in arthamatic( eg : 14%3 = 2)
  3. print is an formatted output statement
  4. else is an if your remainger is not zero then we use else

Attachments:
Similar questions