Mission 5
Anonymous
csharp
07/09/2024 7:50 AM
496 B
20
Indexable
public static string Restaurant(string typeOfFood)
{
switch (typeOfFood)
{
case "מנות ראשונות": return "פתח עמוד 1";
case "מנה עיקרית": return "פתח עמוד 2";
case "קינוח": return "פתח עמוד 3";
default: return "לא נמצא מה שאתה מחפש";
}
}Editor is loading...
Leave a Comment