Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: [CODE]class Switch1{ public static void main(String args[]){ int k = 10; switch(k){ case 5: System.out.println(" case k = 5"); break; case 10: System.out.println(" case k = 10"); break; case 15: System.out.println(" case k = 15"); break; default: System.out.println(" case default"); } } } [/CODE] The output is case k = … |
The End.