Computer Science, asked by haayati, 6 months ago

Write any 2 decion making program?
:-for class 7 plz answer fast​

Answers

Answered by dhruvim
1

Answer:

Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.

Answered by sdffc
2

Answer:

Decision Making in C / C++ (if , if..else, Nested if, if-else-if )

Decision Making in C / C++ (if , if..else, Nested if, if-else-if )There come situations in real life when we need to make some decisions and based on these decisions, we decide what should we do next. Similar situations arise in programming also where we need to make some decisions and based on these decisions we will execute the next block of code. For example, in C if x occurs then execute y else execute z. There can also be multiple conditions like in C if x occurs then execute p, else if condition y occurs execute q, else execute r. This condition of C else-if is one of the many ways of importing multiple conditions.

notice :- pls thank , and mark as brainliest answer and follow me

Similar questions