码迷,mamicode.com
首页 > 其他好文 > 详细

switch语句与default标签

时间:2014-10-06 12:22:50      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   c   on   代码   r   ef   

代码:

#include <stdio.h>
#include <stdlib.h>

void func(int n);

int main(void) {

	int a;

	a = 10;
	func(a);

	a = 20;
	func(a);

	a = 30;
	func(a);

	return EXIT_SUCCESS;
}

void func(int n) {

	switch (n) {

	case 10:
		printf("case 10\n");
		break;

	default:
		printf("default\n");
		break;

	case 20:
		printf("case 20\n");
		break;

	}

}

输出:

case 10
case 20
default


switch语句与default标签

标签:style   io   ar   sp   c   on   代码   r   ef   

原文地址:http://my.oschina.net/Xwoder/blog/324467

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!