c語言學習之選擇結構程式設計(第三天)

來源:互聯網
上載者:User

標籤:c語言 選擇結構

650) this.width=650;" src="https://s1.51cto.com/wyfs02/M02/9D/DE/wKiom1mH62GxJqLyAABboBpje-o366.png-wh_500x0-wm_3-wmp_4-s_3678786343.png" title="2017-08-07_11-50-49.png" alt="wKiom1mH62GxJqLyAABboBpje-o366.png-wh_50" />

為了增加理解,寫的幾個小程式

1:判斷三角形的成立以及輸出最大邊 練習前三種語句

#include <stdio.h>int main(){int a,b,c;printf("請輸入三角形三邊長(邊為整數,不能輸入負數):");scanf("%d%d%d", &a ,&b ,&c);if ((a+b)>c&&(a+c)>b&&(b+c)>a){printf("能構成三角形\n");if ((a>b&&a>c)||((a=b)>c))printf("%d\n",a);else{if ((b>a&&b>c)||((b=c)>a))printf("%d\n",b);elseprintf("%d\n",c); }}elseprintf("不能構成三角形");getchar();

2:判斷輸出練習後兩種語句

#include <stdio.h>int main(){char a;printf("請輸入你的分數等級:\n");scanf("%c",&a);switch(a){case ‘a‘: printf("優秀");break;case ‘b‘: printf("良好");break;case ‘c‘: printf("及格");break;default: printf("輸入不正確"); }}


本文出自 “大李子” 部落格,轉載請與作者聯絡!

c語言學習之選擇結構程式設計(第三天)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.