第二十六講專案1-投票表決器
阿新 • • 發佈:2019-01-01
程式程式碼
輸出結果 知識點總結 用了switch語句實現多分枝語句,當我輸入的某個字元於case相等了,執行對應的語句,接下來把需要執行case語句(Y,y或N,n)都執行到,然後berak退出。 心得體會: 學會了如何使用switch語句進行簡單的編碼
#include <stdio.h> #include <stdlib.h> /* *csdn學院——2016級 *檔名稱:Myfun29.c *作者:小臣小仁 *完成日期:2016年11月11日 *問題描述:設計一個投票表決器,其功能是: *輸入Y、y,列印agree *輸入N、n,列印disagree *輸入其他,列印lose */ int main() { char a; printf("請投出票\n"); scanf("%c",&a); switch(a) { case 'Y': case 'y': printf("agree\n");break; case 'N': case 'n': printf("disaqree\n");break; default: printf("lose\n"); } return 0; }
輸出結果 知識點總結 用了switch語句實現多分枝語句,當我輸入的某個字元於case相等了,執行對應的語句,接下來把需要執行case語句(Y,y或N,n)都執行到,然後berak退出。 心得體會: 學會了如何使用switch語句進行簡單的編碼