首页
/
每日頭條
/
生活
/
c語言case語句的使用方法
c語言case語句的使用方法
更新时间:2024-11-18 06:05:23

c語言case語句的使用方法?這一講我們講解,通過鍵盤輸入數字1,2,或者3,然後我們SWITCH選擇打印出來,是對C語言基本語法的練習 #include <stdio.h> #include <tchar.h> #include <stdlib.h> int _tmain(int argc, _TCHAR* argv[]) { int a = 0; printf("鍵盤輸入變量賦值給a\r\n"); scanf("%d",&a); switch (a) { case 1: printf("鍵盤輸入a=1\r\n"); break; case 2: printf("鍵盤輸入a=3\r\n"); break; case 3: printf("鍵盤輸入a=3\r\n"); break; } system("Pause"); return 0; },我來為大家講解一下關于c語言case語句的使用方法?跟着小編一起來看一看吧!

c語言case語句的使用方法(四基本語法之switchcase)1

c語言case語句的使用方法

這一講我們講解,通過鍵盤輸入數字1,2,或者3,然後我們SWITCH選擇打印出來,是對C語言基本語法的練習。 #include <stdio.h> #include <tchar.h> #include <stdlib.h> int _tmain(int argc, _TCHAR* argv[]) { int a = 0; printf("鍵盤輸入變量賦值給a\r\n"); scanf("%d",&a); switch (a) { case 1: printf("鍵盤輸入a=1\r\n"); break; case 2: printf("鍵盤輸入a=3\r\n"); break; case 3: printf("鍵盤輸入a=3\r\n"); break; } system("Pause"); return 0; }

,
Comments
Welcome to tft每日頭條 comments! Please keep conversations courteous and on-topic. To fosterproductive and respectful conversations, you may see comments from our Community Managers.
Sign up to post
Sort by
Show More Comments
Copyright 2023-2024 - www.tftnews.com All Rights Reserved