English

Use switch case statement for the given program snippet: if(a == 100) c = a * 2; if(a == 200) c = a * 4; if(a == 600) c = a * 10; - Computer Applications

Advertisements
Advertisements

Question

Use switch case statement for the given program snippet:

if(a == 100) 
c = a * 2; 
if(a == 200) 
c = a * 4; 
if(a == 600) 
c = a * 10; 
Answer in Brief

Solution

switch(a) 
{ 
case 100: c = a * 2; 
break; 
case 200: c = a * 4; 
break; 
case 600: c = a * 10; 
} 
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.08: Conditional Statements in Java - Review Insight [Page 97]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.08 Conditional Statements in Java
Review Insight | Q 3. | Page 97
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×