Write a code snippet that if you buy shirts to say i bought shirts. If you instead bought shoes, let it say i bought one pair | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Write a code snippet that if you buy shirts to say i bought shirts. If you instead bought shoes, let it say i bought one pair

12th May 2017, 12:32 AM
jay kay
jay kay - avatar
2 Answers
12th May 2017, 2:20 AM
jay
jay - avatar
+ 5
void buyShirt(){ System.out.println("I bought shirts!"); } void buyShoes(){ System.ot.println("I bought one pair!"); } void buy(String item){ if(item.equals("shoes")){ buyShoes(); }else if(item.equals("shirt")){ buyShirt(); }else{ System.out.println("Buy something else"); } }
12th May 2017, 1:12 AM
Szabó Gábor
Szabó Gábor - avatar