072-switch语句

switch语法

switch(整数条件)
{
        case 条件一:
            语句;
        break;
        default:
        break;
}

你可能感兴趣的:(c++,c语言,开发语言)