Instruction
stringlengths
45
106
input_code
stringlengths
1
13.7k
output_code
stringlengths
1
13.7k
Rewrite the snippet below in Java so it works the same as the original COBOL code.
IDENTIFICATION DIVISION. PROGRAM-ID. Environment-Vars. DATA DIVISION. WORKING-STORAGE SECTION. 01 home PIC X(75). PROCEDURE DIVISION. * ACCEPT home FROM ENVIRONMENT "HOME" DISPLAY home * DISPLAY "HOME" UPON ENVIRONMENT-NAME ACCEPT home FROM ENVIRONMENT-VALUE GOBACK .
System.getenv("HOME") System.getenv()
Transform the following COBOL implementation into Python, maintaining the same output and logic.
IDENTIFICATION DIVISION. PROGRAM-ID. Environment-Vars. DATA DIVISION. WORKING-STORAGE SECTION. 01 home PIC X(75). PROCEDURE DIVISION. * ACCEPT home FROM ENVIRONMENT "HOME" DISPLAY home * DISPLAY "HOME" UPON ENVIRONMENT-NAME ACCEPT home FROM ENVIRONMENT-VALUE GOBACK .
import os os.environ['HOME']
Change the following COBOL code into VB without altering its purpose.
IDENTIFICATION DIVISION. PROGRAM-ID. Environment-Vars. DATA DIVISION. WORKING-STORAGE SECTION. 01 home PIC X(75). PROCEDURE DIVISION. * ACCEPT home FROM ENVIRONMENT "HOME" DISPLAY home * DISPLAY "HOME" UPON ENVIRONMENT-NAME ACCEPT home FROM ENVIRONMENT-VALUE GOBACK .
Debug.Print Environ$("PATH")
Port the following code from COBOL to Go with equivalent syntax and logic.
IDENTIFICATION DIVISION. PROGRAM-ID. Environment-Vars. DATA DIVISION. WORKING-STORAGE SECTION. 01 home PIC X(75). PROCEDURE DIVISION. * ACCEPT home FROM ENVIRONMENT "HOME" DISPLAY home * DISPLAY "HOME" UPON ENVIRONMENT-NAME ACCEPT home FROM ENVIRONMENT-VALUE GOBACK .
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Produce a functionally identical C code for the snippet given in REXX.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
Port the following code from REXX to C# with equivalent syntax and logic.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
Please provide an equivalent version of this REXX code in C++.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
Preserve the algorithm and functionality while converting the code from REXX to Java.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
System.getenv("HOME") System.getenv()
Please provide an equivalent version of this REXX code in Python.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
import os os.environ['HOME']
Generate an equivalent VB version of this REXX code.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
Debug.Print Environ$("PATH")
Preserve the algorithm and functionality while converting the code from REXX to Go.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Produce a functionally identical C code for the snippet given in Ruby.
ENV['HOME']
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
Preserve the algorithm and functionality while converting the code from Ruby to C#.
ENV['HOME']
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
Write the same code in C++ as shown below in Ruby.
ENV['HOME']
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
Translate this program into Go but keep the logic exactly as in Ruby.
ENV['HOME']
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Translate the given Scala code snippet into C without altering its behavior.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
Produce a language-to-language conversion: from Scala to C#, same semantics.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
Translate the given Scala code snippet into C++ without altering its behavior.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
Write the same algorithm in Java as shown in this Scala implementation.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
System.getenv("HOME") System.getenv()
Generate a Python translation of this Scala snippet without changing its computational steps.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
import os os.environ['HOME']
Convert this Scala snippet to VB and keep its semantics consistent.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
Debug.Print Environ$("PATH")
Write the same algorithm in Go as shown in this Scala implementation.
fun main(args: Array<String>) { println(System.getenv("SystemRoot")) }
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Keep all operations the same but rewrite the snippet in C.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
Ensure the translated C# code behaves exactly like the original Swift snippet.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
Can you help me rewrite this code in C++ instead of Swift, keeping it the same logically?
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
Convert this Swift snippet to Java and keep its semantics consistent.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
System.getenv("HOME") System.getenv()
Rewrite the snippet below in Python so it works the same as the original Swift code.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
import os os.environ['HOME']
Change the following Swift code into VB without altering its purpose.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
Debug.Print Environ$("PATH")
Please provide an equivalent version of this Swift code in Go.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Convert the following code from Tcl to C, ensuring the logic remains intact.
$env(HOME)
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
Change the programming language of this snippet from Tcl to C# without modifying what it does.
$env(HOME)
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
Please provide an equivalent version of this Tcl code in C++.
$env(HOME)
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
Please provide an equivalent version of this Tcl code in Go.
$env(HOME)
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
Write a version of this Rust function in PHP with identical behavior.
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
$_ENV['HOME']
Ensure the translated PHP code behaves exactly like the original Ada snippet.
with Ada.Environment_Variables; use Ada.Environment_Variables; with Ada.Text_Io; use Ada.Text_Io; procedure Print_Path is begin Put_Line("Path : " & Value("PATH")); end Print_Path;
$_ENV['HOME']
Port the provided BBC_Basic code into PHP while preserving the original functionality.
PRINT FNenvironment("PATH") PRINT FNenvironment("USERNAME") END DEF FNenvironment(envar$) LOCAL buffer%, size% SYS "GetEnvironmentVariable", envar$, 0, 0 TO size% DIM buffer% LOCAL size% SYS "GetEnvironmentVariable", envar$, buffer%, size%+1 = $$buffer%
$_ENV['HOME']
Preserve the algorithm and functionality while converting the code from Delphi to PHP.
program EnvironmentVariable; uses SysUtils; begin WriteLn('Temp = ' + GetEnvironmentVariable('TEMP')); end.
$_ENV['HOME']
Can you help me rewrite this code in PHP instead of F#, keeping it the same logically?
open System [<EntryPoint>] let main args = printfn "%A" (Environment.GetEnvironmentVariable("PATH")) 0
$_ENV['HOME']
Keep all operations the same but rewrite the snippet in PHP.
program show_home implicit none character(len=32) :: home_val integer :: home_len integer :: stat call get_environment_variable('HOME', home_val, home_len, stat) if (stat == 0) then write(*,'(a)') 'HOME = '//trim(home_val) else write(*,'(a)') 'No HOME to go to end if end program show_home
$_ENV['HOME']
Generate a PHP translation of this Icon snippet without changing its computational steps.
procedure main(arglist) if *envars = 0 then envars := ["HOME", "TRACE", "BLKSIZE","STRSIZE","COEXPSIZE","MSTKSIZE", "IPATH","LPATH","NOERRBUF"] every v := !sort(envars) do write(v," = ",image(getenv(v))|"* not set *") end
$_ENV['HOME']
Translate this program into PHP but keep the logic exactly as in COBOL.
IDENTIFICATION DIVISION. PROGRAM-ID. Environment-Vars. DATA DIVISION. WORKING-STORAGE SECTION. 01 home PIC X(75). PROCEDURE DIVISION. * ACCEPT home FROM ENVIRONMENT "HOME" DISPLAY home * DISPLAY "HOME" UPON ENVIRONMENT-NAME ACCEPT home FROM ENVIRONMENT-VALUE GOBACK .
$_ENV['HOME']
Convert this REXX block to PHP, preserving its control flow and logic.
options replace format comments java crossref symbols nobinary runSample(arg) return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysEnvironment(vn = '') public static if vn.length > 0 then do envName = vn envValu = System.getenv(envName) if envValu = null then envValu = '' say envName '=' envValu end else do envVars = System.getenv() key = String loop key over envVars.keySet() envName = key envValu = String envVars.get(key) say envName '=' envValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method sysProperties(vn = '') public static if vn.length > 0 then do propName = vn propValu = System.getProperty(propName) if propValu = null then propValu = '' say propName '=' propValu end else do sysProps = System.getProperties() key = String loop key over sysProps.keySet() propName = key propValu = sysProps.getProperty(key) say propName '=' propValu end key end return -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ method runSample(arg) public static parse arg ev pv . if ev = '' then ev = 'CLASSPATH' if pv = '' then pv = 'java.class.path' say '-'.left(80, '-').overlay(' Environment "'ev'" ', 5) sysEnvironment(ev) say '-'.left(80, '-').overlay(' Properties "'pv'" ', 5) sysProperties(pv) say say '-'.left(80, '-').overlay(' Environment ', 5) sysEnvironment() say '-'.left(80, '-').overlay(' Properties ', 5) sysProperties() say return
$_ENV['HOME']
Transform the following Swift implementation into PHP, maintaining the same output and logic.
print("USER: \(ProcessInfo.processInfo.environment["USER"] ?? "Not set")") print("PATH: \(ProcessInfo.processInfo.environment["PATH"] ?? "Not set")")
$_ENV['HOME']
Convert the following code from C to Rust, ensuring the logic remains intact.
#include <stdlib.h> #include <stdio.h> int main() { puts(getenv("HOME")); puts(getenv("PATH")); puts(getenv("USER")); return 0; }
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Rewrite the snippet below in Rust so it works the same as the original C++ code.
#include <cstdlib> #include <cstdio> int main() { puts(getenv("HOME")); return 0; }
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Maintain the same structure and functionality when rewriting this code in Rust.
System.getenv("HOME") System.getenv()
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Rewrite this program in Rust while keeping its functionality equivalent to the Go version.
package main import ( "fmt" "os" ) func main() { fmt.Println(os.Getenv("SHELL")) }
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Translate this program into VB but keep the logic exactly as in Rust.
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Debug.Print Environ$("PATH")
Ensure the translated Python code behaves exactly like the original Rust snippet.
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
import os os.environ['HOME']
Write the same algorithm in Rust as shown in this C# implementation.
using System; namespace RosettaCode { class Program { static void Main() { string temp = Environment.GetEnvironmentVariable("TEMP"); Console.WriteLine("TEMP is " + temp); } } }
use std::env; fn main() { println!("{:?}", env::var("HOME")); println!(); for (k, v) in env::vars().filter(|(k, _)| k.starts_with('P')) { println!("{}: {}", k, v); } }
Write a version of this Ada function in C# with identical behavior.
type String is array (Positive range <>) of Character;
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Port the provided Ada code into C while preserving the original functionality.
type String is array (Positive range <>) of Character;
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Translate the given Ada code snippet into C++ without altering its behavior.
type String is array (Positive range <>) of Character;
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Change the programming language of this snippet from Ada to Go without modifying what it does.
type String is array (Positive range <>) of Character;
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Generate an equivalent Java version of this Ada code.
type String is array (Positive range <>) of Character;
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Produce a language-to-language conversion: from Ada to Python, same semantics.
type String is array (Positive range <>) of Character;
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Convert the following code from Ada to VB, ensuring the logic remains intact.
type String is array (Positive range <>) of Character;
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Generate an equivalent C version of this Arturo code.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Produce a functionally identical C# code for the snippet given in Arturo.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Change the programming language of this snippet from Arturo to C++ without modifying what it does.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Write a version of this Arturo function in Java with identical behavior.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Write the same code in Python as shown below in Arturo.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Convert this Arturo snippet to VB and keep its semantics consistent.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Produce a functionally identical Go code for the snippet given in Arturo.
str: "abcdefgh" n: 2 m: 3 print slice str n-1 n+m-2 print slice str n-1 (size str)-1 print slice str 0 (size str)-2 print slice str index str "d" m+(index str "d")-1 print slice str index str "cd" m+(index str "cd")-1
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Translate the given AutoHotKey code snippet into C without altering its behavior.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Write the same algorithm in C# as shown in this AutoHotKey implementation.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Convert this AutoHotKey block to C++, preserving its control flow and logic.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Rewrite this program in Java while keeping its functionality equivalent to the AutoHotKey version.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Produce a functionally identical Python code for the snippet given in AutoHotKey.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Please provide an equivalent version of this AutoHotKey code in VB.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Keep all operations the same but rewrite the snippet in Go.
String := "abcdefghijklmnopqrstuvwxyz" n := 12 m := 5 subString := SubStr(String, n, m) MsgBox % subString subString := SubStr(String, n) MsgBox % subString StringTrimRight, subString, String, 1 MsgBox % subString findChar := "q" subString := SubStr(String, InStr(String, findChar), m) MsgBox % subString findString := "pq" subString := SubStr(String, InStr(String, findString), m) MsgBox % subString
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Produce a functionally identical C code for the snippet given in AWK.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Convert the following code from AWK to C#, ensuring the logic remains intact.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Port the provided AWK code into C++ while preserving the original functionality.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Generate an equivalent Java version of this AWK code.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Transform the following AWK implementation into Python, maintaining the same output and logic.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Convert this AWK snippet to VB and keep its semantics consistent.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Maintain the same structure and functionality when rewriting this code in Go.
BEGIN { str = "abcdefghijklmnopqrstuvwxyz" n = 12 m = 5 print substr(str, n, m) print substr(str, n) print substr(str, 1, length(str) - 1) print substr(str, index(str, "q"), m) print substr(str, index(str, "pq"), m) }
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Transform the following BBC_Basic implementation into C, maintaining the same output and logic.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Change the programming language of this snippet from BBC_Basic to C# without modifying what it does.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Transform the following BBC_Basic implementation into C++, maintaining the same output and logic.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Ensure the translated Java code behaves exactly like the original BBC_Basic snippet.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Port the provided BBC_Basic code into Python while preserving the original functionality.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Convert the following code from BBC_Basic to VB, ensuring the logic remains intact.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Change the programming language of this snippet from BBC_Basic to Go without modifying what it does.
basestring$ = "The five boxing wizards jump quickly" n% = 10 m% = 5 substring$ = MID$(basestring$, n%, m%) PRINT substring$ substring$ = MID$(basestring$, n%) PRINT substring$ substring$ = LEFT$(basestring$) PRINT substring$ char$ = "w" substring$ = MID$(basestring$, INSTR(basestring$, char$), m%) PRINT substring$ find$ = "iz" substring$ = MID$(basestring$, INSTR(basestring$, find$), m%) PRINT substring$
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Preserve the algorithm and functionality while converting the code from Common_Lisp to C.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Ensure the translated C# code behaves exactly like the original Common_Lisp snippet.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Transform the following Common_Lisp implementation into C++, maintaining the same output and logic.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Transform the following Common_Lisp implementation into Java, maintaining the same output and logic.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Write the same algorithm in Python as shown in this Common_Lisp implementation.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Rewrite the snippet below in VB so it works the same as the original Common_Lisp code.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Produce a functionally identical Go code for the snippet given in Common_Lisp.
(def string "alphabet") (def n 2) (def m 4) (def len (count string)) (println (subs string n (+ n m))) (println (subs string n)) (println (subs string 0 (dec len))) (let [pos (.indexOf string (int \l))] (println (subs string pos (+ pos m)))) (let [pos (.indexOf string "ph")] (println (subs string pos (+ pos m))))
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Port the following code from D to C with equivalent syntax and logic.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }
Convert this D snippet to C# and keep its semantics consistent.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
using System; namespace SubString { class Program { static void Main(string[] args) { string s = "0123456789"; const int n = 3; const int m = 2; const char c = '3'; const string z = "345"; Console.WriteLine(s.Substring(n, m)); Console.WriteLine(s.Substring(n, s.Length - n)); Console.WriteLine(s.Substring(0, s.Length - 1)); Console.WriteLine(s.Substring(s.IndexOf(c), m)); Console.WriteLine(s.Substring(s.IndexOf(z), m)); } } }
Transform the following D implementation into C++, maintaining the same output and logic.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
#include <iostream> #include <string> int main() { std::string s = "0123456789"; int const n = 3; int const m = 4; char const c = '2'; std::string const sub = "456"; std::cout << s.substr(n, m)<< "\n"; std::cout << s.substr(n) << "\n"; std::cout << s.substr(0, s.size()-1) << "\n"; std::cout << s.substr(s.find(c), m) << "\n"; std::cout << s.substr(s.find(sub), m) << "\n"; }
Translate the given D code snippet into Java without altering its behavior.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
public static String Substring(String str, int n, int m){ return str.substring(n, n+m); } public static String Substring(String str, int n){ return str.substring(n); } public static String Substring(String str){ return str.substring(0, str.length()-1); } public static String Substring(String str, char c, int m){ return str.substring(str.indexOf(c), str.indexOf(c)+m+1); } public static String Substring(String str, String sub, int m){ return str.substring(str.indexOf(sub), str.indexOf(sub)+m+1); }
Maintain the same structure and functionality when rewriting this code in Python.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
>>> s = 'abcdefgh' >>> n, m, char, chars = 2, 3, 'd', 'cd' >>> >>> s[n-1:n+m-1] 'bcd' >>> >>> s[n-1:] 'bcdefgh' >>> >>> s[:-1] 'abcdefg' >>> >>> indx = s.index(char) >>> s[indx:indx+m] 'def' >>> >>> indx = s.index(chars) >>> s[indx:indx+m] 'cde' >>>
Write the same code in VB as shown below in D.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
Public Sub substring() sentence = "the last thing the man said was the" n = 10: m = 5 Debug.Print Mid(sentence, n, 5) Debug.Print Right(sentence, Len(sentence) - n + 1) Debug.Print Left(sentence, Len(sentence) - 1) k = InStr(1, sentence, "m") Debug.Print Mid(sentence, k, 5) k = InStr(1, sentence, "aid") Debug.Print Mid(sentence, k, 5) End Sub
Ensure the translated Go code behaves exactly like the original D snippet.
import std.stdio, std.string; void main() { const s = "the quick brown fox jumps over the lazy dog"; enum n = 5, m = 3; writeln(s[n .. n + m]); writeln(s[n .. $]); writeln(s[0 .. $ - 1]); const i = s.indexOf("q"); writeln(s[i .. i + m]); const j = s.indexOf("qu"); writeln(s[j .. j + m]); }
package main import ( "fmt" "strings" ) func main() { s := "ABCDEFGH" n, m := 2, 3 fmt.Println("Index: ", "01234567") fmt.Println("String:", s) fmt.Printf("Start %d, length %d: %s\n", n, m, s[n : n+m]) fmt.Printf("Start %d, to end: %s\n", n, s[n:]) fmt.Printf("All but last: %s\n", s[:len(s)-1]) dx := strings.IndexByte(s, 'D') fmt.Printf("Start 'D', length %d: %s\n", m, s[dx : dx+m]) sx := strings.Index(s, "DE") fmt.Printf(`Start "DE", length %d: %s`+"\n", m, s[sx : sx+m]) }
Keep all operations the same but rewrite the snippet in C.
program ShowSubstring; uses SysUtils; const s = '0123456789'; n = 3; m = 4; c = '2'; sub = '456'; begin Writeln(Copy(s, n, m)); Writeln(Copy(s, n, Length(s))); Writeln(Copy(s, 1, Length(s) - 1)); Writeln(Copy(s, Pos(c, s), m)); Writeln(Copy(s, Pos(sub, s), m)); end.
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> void putm(char* string, size_t m) { while(*string && m--) putchar(*string++); } int main(void) { char string[] = "Programs for other encodings (such as 8-bit ASCII, or EUC-JP)." int n = 3; int m = 4; char knownCharacter = '('; char knownSubstring[] = "encodings"; putm(string+n-1, m ); putchar('\n'); puts(string+n+1); putchar('\n'); putm(string, strlen(string)-1); putchar('\n'); putm(strchr(string, knownCharacter), m ); putchar('\n'); putm(strstr(string, knownSubstring), m ); putchar('\n'); return EXIT_SUCCESS; }