Home  >  Article  >  Backend Development  >  Use flowcharts and procedures to describe decision-making concepts in C

Use flowcharts and procedures to describe decision-making concepts in C

WBOY
WBOYforward
2023-09-15 11:05:041252browse

The following is the decision statement-

  • Simple- if statement
  • if-else statement
  • Nested-if else statement
  • else – ifladder
  • switch statement

Simple – if statement

The “if” keyword is used to execute a set of statements when a logical condition is true.

Syntax

if (condition){
   Statement (s)
}

Use flowcharts and procedures to describe decision-making concepts in C

Example

The following example checks whether a number is greater than 50.

#include
main (){
   int a;
   printf (“enter any number:

”); scanf (“%d”, &a); if (a>50) printf (“%d is greater than 50”, a); }

Output

1) enter any number: 60
60 is greater than 50 .
2) enter any number 20
no output

if else statement

if else statement accepts True or False conditions.

Syntax

if (condition){
   True block statement(s)
}
else{
   False block statement(s)
}

Flowchart

Use flowcharts and procedures to describe decision-making concepts in C

Example

The following is a program to check odd and even numbers−

#include
main (){
   int n;
   printf (“enter any number:

”); scanf (“%d”, &n); if (n%2 ==0) printf (“%d is even number”, n); else printf( “%d is odd number”, n); }

Output

1) enter any number: 10
10 is even number

Nested if - else statement

Here the "if" is placed inside another if (or) else-

Syntax

if (condition1){
   if (condition2)
      stmt1;
   else
      stmt2;
   }
   else{
      if (condition3)
         stmt3;
      else
         stmt4;
   }

Flow chart

Use flowcharts and procedures to describe decision-making concepts in C

Example

The following example is to print the largest 3 digits of the given number.

#include
main (){
   int a,b,c;
   printf (“enter 3 numbers”);
   scanf (“%d%d%d”, &a, &b, &c);
   if (a>b){
      if (a>c)
         printf (“%d is largest”, a);
      else
         printf (“%d is largest”, c);
   } else {
      if (b>c)
         printf (“%d is largest”, b);
      else
         printf (“%d is largest”, c);
   }
}

Output

enter 3 numbers = 10 20 30
30 is largest

Else – if ladder

It is a multi-way decision condition.

Syntax

if (condition1)
   stmt1;
else if (condition2)
   stmt2;
   - - - - -
   - - - - -
else if (condition n)
   stmt n;
else
   stmt x;

Flow chart

Use flowcharts and procedures to describe decision-making concepts in C

Example

The following example finds the roots of a quadratic equation-

#include 
main (){
   int a,b,c,d;
   float r1, r2
   printf ("enter the values a b c");
   scanf (“%d%d%d”, &a, &b, &c);
   d= b*b – 4*a*c ;
   if (d>0){
      r1 = (-b+sqrt(d)) / (2*a);
      r2 = (-b-sqrt(d)) / (2*a);
      printf (“root1 ,root2 =%f%f”, r1, r2);
   }
   else if (d== 0){
      r1 = -b / (2*a);
      r2 = -b/ (2*a);
   printf (“root1, root2 = %f%f”, r1, r2);
   }
   else
      printf ("roots are imaginary”);
}

Output

1) enter the values of a b c : 1 4 3
Root 1 = -1
Root 2 = -3

Switch statement

It helps to select one from multiple decisions.

Grammar

switch (expression){
   case value1 : stmt1;
      break;
   case value2 : stmt2;
      break;
   - - - - - -
   default : stmt – x;
}

Grammar

Use flowcharts and procedures to describe decision-making concepts in C

Example

#include
main (){
   int n;
   printf (“enter a number”);
   scanf (“%d”, &n);
   switch (n){
      case 0 : printf (“zero”)
         break;
      case 1 : printf (‘one”);
         break;
      default : printf (‘wrong choice”);
   }
}

Output

enter a number
1
One

The above is the detailed content of Use flowcharts and procedures to describe decision-making concepts in C. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete