| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 645 人关注过本帖
标题:[讨论]来看看switch
取消只看楼主 加入收藏
走火
Rank: 1
等 级:新手上路
帖 子:426
专家分:0
注 册:2005-12-28
收藏
 问题点数:0 回复次数:0 
[讨论]来看看switch
今天学习时,遇到个麻烦
我写好了程序,编译总时出错,整了半天才找到原因.
void main()
我忘记写()成了void main 这种错误.... 郁闷呀

来看看下面的例子

int a=2; //当a=0,2时结果
switch (a)
{default: System.out.println("d");
case 1: System.out.println("1");
case 2: System.out.println("2");
case 3: System.out.println("3");
case 4: System.out.println("4");
}

int a=2; //当a=0,2时结果
switch (a)
{case 1: System.out.println("1");
case 2: System.out.println("2");
default: System.out.println("d"); break;
case 3: System.out.println("3");
case 4: System.out.println("4");
}

搜索更多相关主题的帖子: switch 
2006-08-14 19:04
快速回复:[讨论]来看看switch
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021397 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved