首頁 > 後端開發 > C++ > 主體

使用流程圖和程序來描述C語言中的決策概念

WBOY
發布: 2023-09-15 11:05:04
轉載
1361 人瀏覽過

以下是決策語句-

  • 簡單- if 語句
  • if - else 語句
  • 巢狀- if else 語句
  • else – ifladder
  • switch 語句

簡單– if 語句

「if」關鍵字是用來在邏輯條件為真時執行一組語句。

語法

if (condition){
   Statement (s)
}
登入後複製

使用流程圖和程序來描述C語言中的決策概念

範例

以下範例檢查數字是否大於 50。

#include<stdio.h>
main (){
   int a;
   printf (&ldquo;enter any number:</p><p>&rdquo;);
   scanf (&ldquo;%d&rdquo;, &a);
   if (a>50)
      printf (&ldquo;%d is greater than 50&rdquo;, a);
}
登入後複製

輸出

1) enter any number: 60
60 is greater than 50 .
2) enter any number 20
no output
登入後複製

if else語句

if else語句接受True或False條件。

語法

if (condition){
   True block statement(s)
}
else{
   False block statement(s)
}
登入後複製

流程圖

使用流程圖和程序來描述C語言中的決策概念

#範例

以下是檢查奇偶數的程式−

#include<stdio.h>
main (){
   int n;
   printf (&ldquo;enter any number:</p><p>&rdquo;);
   scanf (&ldquo;%d&rdquo;, &n);
   if (n%2 ==0)
      printf (&ldquo;%d is even number&rdquo;, n);
   else
      printf( &ldquo;%d is odd number&rdquo;, n);
}
登入後複製

輸出

1) enter any number: 10
10 is even number
登入後複製

嵌套的if - else 語句

這裡的「if」被放置在另一個if(或)else 中-

#語法

if (condition1){
   if (condition2)
      stmt1;
   else
      stmt2;
   }
   else{
      if (condition3)
         stmt3;
      else
         stmt4;
   }
登入後複製

流程圖

使用流程圖和程序來描述C語言中的決策概念

範例

以下範例是列印給定數字中最大的3個數字。

#include<stdio.h>
main (){
   int a,b,c;
   printf (&ldquo;enter 3 numbers&rdquo;);
   scanf (&ldquo;%d%d%d&rdquo;, &a, &b, &c);
   if (a>b){
      if (a>c)
         printf (&ldquo;%d is largest&rdquo;, a);
      else
         printf (&ldquo;%d is largest&rdquo;, c);
   } else {
      if (b>c)
         printf (&ldquo;%d is largest&rdquo;, b);
      else
         printf (&ldquo;%d is largest&rdquo;, c);
   }
}
登入後複製

輸出

enter 3 numbers = 10 20 30
30 is largest
登入後複製

Else – if ladder

它是一個多路決策條件。

Syntax

if (condition1)
   stmt1;
else if (condition2)
   stmt2;
   - - - - -
   - - - - -
else if (condition n)
   stmt n;
else
   stmt x;
登入後複製

流程圖

使用流程圖和程序來描述C語言中的決策概念

#範例

以下範例求二次方程式的根-

#include <math.h>
main (){
   int a,b,c,d;
   float r1, r2
   printf ("enter the values a b c");
   scanf (&ldquo;%d%d%d&rdquo;, &a, &b, &c);
   d= b*b &ndash; 4*a*c ;
   if (d>0){
      r1 = (-b+sqrt(d)) / (2*a);
      r2 = (-b-sqrt(d)) / (2*a);
      printf (&ldquo;root1 ,root2 =%f%f&rdquo;, r1, r2);
   }
   else if (d== 0){
      r1 = -b / (2*a);
      r2 = -b/ (2*a);
   printf (&ldquo;root1, root2 = %f%f&rdquo;, r1, r2);
   }
   else
      printf ("roots are imaginary&rdquo;);
}
登入後複製

輸出

1) enter the values of a b c : 1 4 3
Root 1 = -1
Root 2 = -3
登入後複製

Switch 語句

它有助於從多個決策中選擇一個。

語法

switch (expression){
   case value1 : stmt1;
      break;
   case value2 : stmt2;
      break;
   - - - - - -
   default : stmt &ndash; x;
}
登入後複製

語法

使用流程圖和程序來描述C語言中的決策概念

範例

#include<stdio.h>
main (){
   int n;
   printf (&ldquo;enter a number&rdquo;);
   scanf (&ldquo;%d&rdquo;, &n);
   switch (n){
      case 0 : printf (&ldquo;zero&rdquo;)
         break;
      case 1 : printf (&lsquo;one&rdquo;);
         break;
      default : printf (&lsquo;wrong choice&rdquo;);
   }
}
登入後複製

輸出

enter a number
1
One
登入後複製

以上是使用流程圖和程序來描述C語言中的決策概念的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板