(c文法百題15)算術運算

來源:互聯網
上載者:User

標籤:style   blog   color   io   ar   div   amp   log   

知識點:

法1:

字元與ASCLL碼的轉換熟練!

if……else的用法

法2:

switch的用法

注意 scanf("%f %f %c",&a,&b,&c);與scanf("%f%f%c",&a,&b,&c);的區別,中間有無空格。

 

 

內容: 輸入兩個數值(均不為零)及一個算術運算子,輸出其運算的結果(保留兩位小數)。

輸入說明:

一行,2個數字,一字元(+,-,*,/,分別代表加、減、乘、除

輸出說明:

一行,一個數字(保留兩位小數)

 

輸入範例:

100 2 -

輸出範例 :

98.00

 

法1:

 1 #include <stdio.h> 2 int main() 3 { 4  float a,b; 5  char c; 6  scanf("%f %f %c",&a,&b,&c); 7  if (c==43) 8  { 9   printf("%.2f\n",a+b);10  }11  else 12  {13   if (c==45)14   {15    printf("%.2f\n",a-b);16   }17   else18   {19    if(c==42)20    {21     printf("%.2f\n",a*b);22    }23    else24     if(c==47)25     {26      printf("%.2f\n",a/b);27     }28   }29  }30  return 0;31 }

 

法2:

 1 #include <stdio.h> 2 int main() 3 { 4  float a,b; 5  char c; 6  scanf("%f %f %c",&a,&b,&c); 7  switch (c) 8  { 9   case ‘-‘:printf("%.2f\n",a-b);break;10   case ‘+‘:printf("%.2f\n",a+b);break;11   case ‘*‘:printf("%.2f\n",a*b);break;12   case ‘/‘:printf("%.2f\n",a/b);break;13  }14  return 0;15 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.