iOS Learning Day3xiawu

Source: Internet
Author: User

Switch
#include <stdio.h>intMainintargcChar*argv[]) {    inti; scanf ("%d",&i); Switch(i) { Case 1: {printf ("Spring");  Break; }         Case 2: {printf ("Xia");  Break; }         Case 3: {printf ("Autumn");  Break; }                     Case 4: {printf ("Winter"); }        default:             Break; }}

Multiple case can run a block of statements

The definition variable in case needs to be added {};

Enum type (enum)

1

Improve the readability of the program, the essence is shaping, with enumeration type to represent integer constants;

enum season{
Spring
Summer
Autumn
Winter
}
Start from zero by default
Enum Season aeason=0;
scanf ("%d,&season");
Switch (season)
{
Case Spring:
{
printf ("Spring");
}
Case Summer:
{
printf ("Spring");
}
Case Autumn:
{
printf ("Autumn");
]

}
#include <stdio.h>enumseason{Spring=1, summer, autumn, Winter};typedefenumSeason Myseason;//Create an alias for an existing typeintMainintargcChar*argv[]) {        //start from zero by defaultMyseason season=0; scanf ("%d",&season); Switch(season) { CaseSpring: {printf ("Spring");  Break; }         CaseSummer: {printf ("Summer");  Break; }         CaseAutumn: {printf ("Autumn");  Break; }             CaseWinter: {printf ("Winter");  Break; }            default: {printf ("Unknown"); }            }}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.