Instruction
stringlengths
45
106
input_code
stringlengths
1
13.7k
output_code
stringlengths
1
13.7k
Change the programming language of this snippet from C++ to Rust without modifying what it does.
#include <boost/date_time/gregorian/gregorian.hpp> #include <iostream> int main( ) { using namespace boost::gregorian ; std::cout << "Yuletide holidays must be allowed in the following years:\n" ; for ( int i = 2008 ; i < 2121 ; i++ ) { greg_year gy = i ; date d ( gy, Dec , 25 ) ; if ( d.day_of_week( ) == Sunday ) { std::cout << i << std::endl ; } } std::cout << "\n" ; return 0 ; }
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
Rewrite the snippet below in Rust so it works the same as the original C# code.
using System; class Program { static void Main(string[] args) { for (int i = 2008; i <= 2121; i++) { DateTime date = new DateTime(i, 12, 25); if (date.DayOfWeek == DayOfWeek.Sunday) { Console.WriteLine(date.ToString("dd MMM yyyy")); } } } }
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
Ensure the translated Python code behaves exactly like the original Rust snippet.
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
from calendar import weekday, SUNDAY [year for year in range(2008, 2122) if weekday(year, 12, 25) == SUNDAY]
Transform the following Rust implementation into VB, maintaining the same output and logic.
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
Option Explicit Sub MainDayOfTheWeek() Debug.Print "Xmas will be a Sunday in : " & XmasSunday(2008, 2121) End Sub Private Function XmasSunday(firstYear As Integer, lastYear As Integer) As String Dim i As Integer, temp$ For i = firstYear To lastYear If Weekday(CDate("25/12/" & i)) = vbSunday Then temp = temp & ", " & i Next XmasSunday = Mid(temp, 2) End Function
Port the following code from Java to Rust with equivalent syntax and logic.
import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; public class Yuletide{ public static void main(String[] args) { for(int i = 2008;i<=2121;i++){ Calendar cal = new GregorianCalendar(i, Calendar.DECEMBER, 25); if(cal.get(Calendar.DAY_OF_WEEK)==Calendar.SUNDAY){ System.out.println(cal.getTime()); } } } }
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
Produce a language-to-language conversion: from Go to Rust, same semantics.
package main import "fmt" import "time" func main() { for year := 2008; year <= 2121; year++ { if time.Date(year, 12, 25, 0, 0, 0, 0, time.UTC).Weekday() == time.Sunday { fmt.Printf("25 December %d is Sunday\n", year) } } }
extern crate chrono; use chrono::prelude::*; fn main() { let years = (2008..2121).filter(|&y| Local.ymd(y, 12, 25).weekday() == Weekday::Sun).collect::<Vec<i32>>(); println!("Years = {:?}", years); }
Preserve the algorithm and functionality while converting the code from Ada to C#.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Rewrite this program in C# while keeping its functionality equivalent to the Ada version.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Produce a functionally identical C code for the snippet given in Ada.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Port the following code from Ada to C with equivalent syntax and logic.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Rewrite the snippet below in C++ so it works the same as the original Ada code.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Maintain the same structure and functionality when rewriting this code in C++.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Translate the given Ada code snippet into Go without altering its behavior.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Transform the following Ada implementation into Go, maintaining the same output and logic.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Generate an equivalent Java version of this Ada code.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Keep all operations the same but rewrite the snippet in Java.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Produce a language-to-language conversion: from Ada to Python, same semantics.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Port the provided Ada code into Python while preserving the original functionality.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Rewrite this program in VB while keeping its functionality equivalent to the Ada version.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Keep all operations the same but rewrite the snippet in VB.
with Ada.Characters.Handling; with Ada.Strings.Unbounded; with Ada.Text_IO; procedure The_Name_Game is package ACH renames Ada.Characters.Handling; package ASU renames Ada.Strings.Unbounded; function "+"(input : in String) return ASU.Unbounded_String renames ASU.To_Unbounded_String; function "+"(input : in ASU.Unbounded_String) return String renames ASU.To_String; function Normalize_Case(input : in String) return String is begin return ACH.To_Upper(input(input'First)) & ACH.To_Lower(input(input'First + 1 .. input'Last)); end Normalize_Case; function Transform(input : in String; letter : in Character) return String is begin case input(input'First) is when 'A' | 'E' | 'I' | 'O' | 'U' => return letter & ACH.To_Lower(input); when others => if ACH.To_Lower(input(input'First)) = letter then return input(input'First + 1 .. input'Last); else return letter & input(input'First + 1 .. input'Last); end if; end case; end Transform; procedure Lyrics(name : in String) is normalized : constant String := Normalize_Case(name); begin Ada.Text_IO.Put_Line(normalized & ", " & normalized & ", bo-" & Transform(normalized, 'b')); Ada.Text_IO.Put_Line("Banana-fana, fo-" & Transform(normalized, 'f')); Ada.Text_IO.Put_Line("fi-fee-mo-" & Transform(normalized, 'm')); Ada.Text_IO.Put_Line(normalized & '!'); Ada.Text_IO.New_Line; end Lyrics; names : constant array(1 .. 5) of ASU.Unbounded_String := (+"Gary", +"EARL", +"billy", +"FeLiX", +"Mary"); begin for name of names loop Lyrics(+name); end loop; end The_Name_Game;
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Convert this AutoHotKey snippet to C and keep its semantics consistent.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Rewrite this program in C while keeping its functionality equivalent to the AutoHotKey version.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Translate this program into C# but keep the logic exactly as in AutoHotKey.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Convert this AutoHotKey snippet to C# and keep its semantics consistent.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Transform the following AutoHotKey implementation into C++, maintaining the same output and logic.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Translate this program into C++ but keep the logic exactly as in AutoHotKey.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Preserve the algorithm and functionality while converting the code from AutoHotKey to Java.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Port the following code from AutoHotKey to Java with equivalent syntax and logic.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Write the same code in Python as shown below in AutoHotKey.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Rewrite the snippet below in Python so it works the same as the original AutoHotKey code.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Produce a language-to-language conversion: from AutoHotKey to VB, same semantics.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Change the following AutoHotKey code into VB without altering its purpose.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Change the programming language of this snippet from AutoHotKey to Go without modifying what it does.
for i, x in StrSplit("Gary,Earl,Billy,Felix,Mary", ","){ BFM := false if (SubStr(x, 1, 1) ~= "i)^[AEIOU]") y := x else if (SubStr(x, 1, 1) ~= "i)^[BFM]") y := SubStr(x,2), BFM := true else y := SubStr(x,2) StringLower, y, y output := X ", " X ", bo-" (SubStr(x,1,1)="b"&&BFM ? "" : "b") Y . "`nBanana-fana fo-" (SubStr(x,1,1)="f"&&BFM ? "" : "f") Y . "`nFee-fi-mo-" (SubStr(x,1,1)="m"&&BFM ? "" : "m") Y . "`n" X "!" result .= output "`n`n" } MsgBox, 262144, ,% result
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Produce a language-to-language conversion: from AWK to C, same semantics.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Change the following AWK code into C without altering its purpose.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Convert the following code from AWK to C#, ensuring the logic remains intact.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Rewrite the snippet below in C# so it works the same as the original AWK code.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Keep all operations the same but rewrite the snippet in C++.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Rewrite this program in C++ while keeping its functionality equivalent to the AWK version.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Rewrite the snippet below in Java so it works the same as the original AWK code.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Keep all operations the same but rewrite the snippet in Java.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Please provide an equivalent version of this AWK code in Python.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Can you help me rewrite this code in Python instead of AWK, keeping it the same logically?
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Port the provided AWK code into VB while preserving the original functionality.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Generate an equivalent VB version of this AWK code.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Please provide an equivalent version of this AWK code in Go.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Rewrite this program in Go while keeping its functionality equivalent to the AWK version.
BEGIN { n = split("gary,earl,billy,felix,mary,shirley",arr,",") for (i=1; i<=n; i++) { print_verse(arr[i]) } exit(0) } function print_verse(name, c,x,y) { x = toupper(substr(name,1,1)) tolower(substr(name,2)) y = (x ~ /^[AEIOU]/) ? tolower(x) : substr(x,2) c = substr(x,1,1) printf("%s, %s, bo-%s%s\n",x,x,(c~/B/)?"":"b",y) printf("Banana-fana fo-%s%s\n",(c~/F/)?"":"f",y) printf("Fee-fi-mo-%s%s\n",(c~/M/)?"":"m",y) printf("%s!\n\n",x) }
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Rewrite this program in C while keeping its functionality equivalent to the D version.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Please provide an equivalent version of this D code in C.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Transform the following D implementation into C#, maintaining the same output and logic.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Write a version of this D function in C# with identical behavior.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Change the following D code into C++ without altering its purpose.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Port the following code from D to C++ with equivalent syntax and logic.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Ensure the translated Java code behaves exactly like the original D snippet.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Generate an equivalent Java version of this D code.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Change the programming language of this snippet from D to Python without modifying what it does.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Change the following D code into Python without altering its purpose.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Convert this D block to VB, preserving its control flow and logic.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Please provide an equivalent version of this D code in VB.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Translate the given D code snippet into Go without altering its behavior.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Port the following code from D to Go with equivalent syntax and logic.
import std.algorithm; import std.array; import std.conv; import std.stdio; import std.uni; void printVerse(string name) { auto sb = name.map!toLower.array; sb[0] = sb[0].toUpper; string x = sb.to!string; string y; switch(sb[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x.map!toLower.to!string; break; default: y = x[1..$]; break; } string b = "b" ~ y; string f = "f" ~ y; string m = "m" ~ y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } writeln(x, ", ", x, ", bo-", b); writeln("Banana-fana fo-", f); writeln("Fee-fi-mo-", m); writeln(x, "!\n"); } void main() { foreach (name; ["Gary","Earl","Billy","Felix","Mary","steve"]) { printVerse(name); } }
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Please provide an equivalent version of this F# code in C.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Change the programming language of this snippet from F# to C without modifying what it does.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Produce a functionally identical C# code for the snippet given in F#.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Port the following code from F# to C# with equivalent syntax and logic.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Convert this F# block to C++, preserving its control flow and logic.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Produce a language-to-language conversion: from F# to C++, same semantics.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Change the programming language of this snippet from F# to Java without modifying what it does.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Please provide an equivalent version of this F# code in Java.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Change the programming language of this snippet from F# to Python without modifying what it does.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Write the same code in Python as shown below in F#.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Transform the following F# implementation into VB, maintaining the same output and logic.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Convert this F# block to Go, preserving its control flow and logic.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Write the same code in Go as shown below in F#.
let fN g = let fG α β γ = printfn "%s, %s, bo-%s\nBanana-fana fo-%s\nFee-fi-mo-%s\n%s!" g g α β γ g match g.ToLower().[0] with |'a'|'e'|'i'|'o'|'u' as n -> fG ("b"+(string n)+g.[1..]) ("f"+(string n)+g.[1..]) ("m"+(string n)+g.[1..]) |'b' -> fG (g.[1..]) ("f"+g.[1..]) ("m"+g.[1..]) |'f' -> fG ("b"+g.[1..]) (g.[1..]) ("m"+g.[1..]) |'m' -> fG ("b"+g.[1..]) ("f"+g.[1..]) (g.[1..]) |_ -> fG ("b"+g.[1..]) ("f"+g.[1..]) ("m"+g.[1..])
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Generate an equivalent C version of this Factor code.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Can you help me rewrite this code in C instead of Factor, keeping it the same logically?
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Change the programming language of this snippet from Factor to C# without modifying what it does.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Convert this Factor block to C#, preserving its control flow and logic.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Write the same algorithm in C++ as shown in this Factor implementation.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Generate a C++ translation of this Factor snippet without changing its computational steps.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Convert this Factor block to Java, preserving its control flow and logic.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Convert this Factor snippet to Java and keep its semantics consistent.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Can you help me rewrite this code in Python instead of Factor, keeping it the same logically?
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Change the programming language of this snippet from Factor to Python without modifying what it does.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Write the same algorithm in VB as shown in this Factor implementation.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Transform the following Factor implementation into VB, maintaining the same output and logic.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Change the following Factor code into Go without altering its purpose.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Convert this Factor block to Go, preserving its control flow and logic.
USING: ascii combinators interpolate io kernel locals pair-rocket qw sequences ; IN: rosetta-code.name-game : vowel? ( char -- ? ) "AEIOU" member? ; :: name-game ( Name -- ) Name first :> L Name >lower :> name "b" :> B "f" :> F "m" :> M L { CHAR: B => [ "" B CHAR: F => [ "" F CHAR: M => [ "" M [I ${Name}, ${Name}, bo-${B}${name} Banana-fana fo-${F}${name} Fee-fi-mo-${M}${name} ${Name} qw{ Gary Earl Billy Felix Milton Steve } [ name-game ] each
package main import ( "fmt" "strings" ) func printVerse(name string) { x := strings.Title(strings.ToLower(name)) y := x[1:] if strings.Contains("AEIOU", x[:1]) { y = strings.ToLower(x) } b := "b" + y f := "f" + y m := "m" + y switch x[0] { case 'B': b = y case 'F': f = y case 'M': m = y } fmt.Printf("%s, %s, bo-%s\n", x, x, b) fmt.Printf("Banana-fana fo-%s\n", f) fmt.Printf("Fee-fi-mo-%s\n", m) fmt.Printf("%s!\n\n", x) } func main() { names := [6]string{"gARY", "Earl", "Billy", "Felix", "Mary", "SHIRley"} for _, name := range names { printVerse(name) } }
Can you help me rewrite this code in C instead of Haskell, keeping it the same logically?
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Transform the following Haskell implementation into C, maintaining the same output and logic.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
#include <stdio.h> #include <string.h> void print_verse(const char *name) { char *x, *y; int b = 1, f = 1, m = 1, i = 1; x = strdup(name); x[0] = toupper(x[0]); for (; x[i]; ++i) x[i] = tolower(x[i]); if (strchr("AEIOU", x[0])) { y = strdup(x); y[0] = tolower(y[0]); } else { y = x + 1; } switch(x[0]) { case 'B': b = 0; break; case 'F': f = 0; break; case 'M': m = 0; break; default : break; } printf("%s, %s, bo-%s%s\n", x, x, (b) ? "b" : "", y); printf("Banana-fana fo-%s%s\n", (f) ? "f" : "", y); printf("Fee-fi-mo-%s%s\n", (m) ? "m" : "", y); printf("%s!\n\n", x); } int main() { int i; const char *names[6] = {"gARY", "Earl", "Billy", "Felix", "Mary", "sHIRley"}; for (i = 0; i < 6; ++i) print_verse(names[i]); return 0; }
Please provide an equivalent version of this Haskell code in C#.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Convert this Haskell snippet to C# and keep its semantics consistent.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
using System; using System.Collections.Generic; using System.Text; namespace TheNameGame { class Program { static void PrintVerse(string name) { StringBuilder sb = new StringBuilder(name.ToLower()); sb[0] = Char.ToUpper(sb[0]); string x = sb.ToString(); string y = "AEIOU".IndexOf(x[0]) > -1 ? x.ToLower() : x.Substring(1); string b = "b" + y; string f = "f" + y; string m = "m" + y; switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; } Console.WriteLine("{0}, {0}, bo-{1}", x, b); Console.WriteLine("Banana-fana fo-{0}", f); Console.WriteLine("Fee-fi-mo-{0}", m); Console.WriteLine("{0}!", x); Console.WriteLine(); } static void Main(string[] args) { List<string> nameList = new List<string>() { "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; nameList.ForEach(PrintVerse); } } }
Convert the following code from Haskell to C++, ensuring the logic remains intact.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Translate the given Haskell code snippet into C++ without altering its behavior.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
#include <algorithm> #include <iostream> #include <string> #include <vector> static void printVerse(const std::string& name) { std::string x = name; std::transform(x.begin(), x.end(), x.begin(), ::tolower); x[0] = toupper(x[0]); std::string y; switch (x[0]) { case 'A': case 'E': case 'I': case 'O': case 'U': y = x; std::transform(y.begin(), y.end(), y.begin(), ::tolower); break; default: y = x.substr(1); break; } std::string b("b" + y); std::string f("f" + y); std::string m("m" + y); switch (x[0]) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } printf("%s, %s, bo-%s\n", x.c_str(), x.c_str(), b.c_str()); printf("Banana-fana fo-%s\n", f.c_str()); printf("Fee-fi-mo-%s\n", m.c_str()); printf("%s!\n\n", x.c_str()); } int main() { using namespace std; vector<string> nameList{ "Gary", "Earl", "Billy", "Felix", "Mary", "Steve" }; for (auto& name : nameList) { printVerse(name); } return 0; }
Convert this Haskell snippet to Java and keep its semantics consistent.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Convert this Haskell block to Java, preserving its control flow and logic.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
import java.util.stream.Stream; public class NameGame { private static void printVerse(String name) { StringBuilder sb = new StringBuilder(name.toLowerCase()); sb.setCharAt(0, Character.toUpperCase(sb.charAt(0))); String x = sb.toString(); String y = "AEIOU".indexOf(x.charAt(0)) > -1 ? x.toLowerCase() : x.substring(1); String b = "b" + y; String f = "f" + y; String m = "m" + y; switch (x.charAt(0)) { case 'B': b = y; break; case 'F': f = y; break; case 'M': m = y; break; default: break; } System.out.printf("%s, %s, bo-%s\n", x, x, b); System.out.printf("Banana-fana fo-%s\n", f); System.out.printf("Fee-fi-mo-%s\n", m); System.out.printf("%s!\n\n", x); } public static void main(String[] args) { Stream.of("Gary", "Earl", "Billy", "Felix", "Mary", "Steve").forEach(NameGame::printVerse); } }
Write a version of this Haskell function in Python with identical behavior.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Convert this Haskell block to Python, preserving its control flow and logic.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
def print_verse(n): l = ['b', 'f', 'm'] s = n[1:] if str.lower(n[0]) in l: l[l.index(str.lower(n[0]))] = '' elif n[0] in ['A', 'E', 'I', 'O', 'U']: s = str.lower(n) print('{0}, {0}, bo-{2}{1}\nBanana-fana fo-{3}{1}\nFee-fi-mo-{4}{1}\n{0}!\n'.format(n, s, *l)) for n in ['Gary', 'Earl', 'Billy', 'Felix', 'Mary']: print_verse(n)
Rewrite the snippet below in VB so it works the same as the original Haskell code.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function
Maintain the same structure and functionality when rewriting this code in VB.
import Data.Char isVowel :: Char -> Bool isVowel c | char == 'A' = True | char == 'E' = True | char == 'I' = True | char == 'O' = True | char == 'U' = True | otherwise = False where char = toUpper c isSpecial :: Char -> Bool isSpecial c | char == 'B' = True | char == 'F' = True | char == 'M' = True | otherwise = False where char = toUpper c shorten :: String -> String shorten name | isVowel $ head name = map toLower name | otherwise = map toLower $ tail name line :: String -> Char -> String -> String line prefix letter name | letter == char = prefix ++ shorten name ++ "\n" | otherwise = prefix ++ letter:[] ++ shorten name ++ "\n" where char = toLower $ head name theNameGame :: String -> String theNameGame name = line (name ++ ", " ++ name ++ ", bo-") 'b' name ++ line "Banana-fana fo-" 'f' name ++ line "Fee-fi-mo-" 'm' name ++ name ++ "!\n" main = mapM_ (putStrLn . theNameGame) ["Gary", "Earl", "Billy", "Felix", "Mike", "Steve"]
Option Explicit Sub Main() Dim a, r, i As Integer Const SCHEM As String = "(X), (X), bo-b(Y)^Banana-fana fo-f(Y)^Fee-fi-mo-m(Y)^(X)!^" a = Array("GaRY", "Earl", "Billy", "Felix", "Mary", "Mike", "Frank") r = TheGameName(a, SCHEM) For i = LBound(r) To UBound(r) Debug.Print r(i) Next i End Sub Private Function TheGameName(MyArr, S As String) As String() Dim i As Integer, s1 As String, s2 As String, tp As String, t() As String ReDim t(UBound(MyArr)) For i = LBound(MyArr) To UBound(MyArr) tp = Replace(S, "^", vbCrLf) s2 = LCase(Mid(MyArr(i), 2)): s1 = UCase(Left(MyArr(i), 1)) & s2 Select Case UCase(Left(MyArr(i), 1)) Case "A", "E", "I", "O", "U": tp = Replace(tp, "(Y)", LCase(MyArr(i))) Case "B", "F", "M" tp = Replace(tp, "(Y)", s2) tp = Replace(tp, LCase(MyArr(i)), s2) Case Else: tp = Replace(tp, "(Y)", s2) End Select t(i) = Replace(tp, "(X)", s1) Next TheGameName = t End Function