Convert Code from Java to C++
Convert :
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Template {
public static void main(String args[]) {
Scanner sc1 = new Scanner(System.in); //Standard input data
String[] line1 = sc1.nextLine().split(","); //getting input and
spliting on basis of ","
String[] line2 = sc1.nextLine().split(" "); //getting input and
spiliting on basis of " "
Map<String, String> mapping = new HashMap<String,
String>();
for(int i=0;i<line1.length;i++) {
mapping.put(line1[i].split("=")[0], line1[i].split("=")[1]);
//string in map where in [] as key and other as value
}
for(int i=0;i<line2.length;i++) {
if(line2[i].contains("[")) { //check whether it is word or
word-template
String temp = line2[i].substring(1,line2[i].length()-1); //removing
[] from string and checking the key
line2[i]=mapping.get(temp); //getting the value of defined key from
map
}
System.out.print(line2[i]+" "); //printing the array string with
spaces.
}
sc1.close(); //closing the input buffer
}
}
Example input
person=Paul,action=strolls around,place=the park
[person] [action] [place]
Example output
Paul strolls around the park
All the explanation is in the code comments. Hope it helps!
Code:
#include<bits/stdc++.h>
#include <unordered_map>
using namespace std;
// function to split string according to given delimiter
vector <string> split_line(string input,string delim)
{
// resultant array of string
vector <string> result;
size_t prev = 0, pos = 0;
// loop till end of string
while (pos < input.length() && prev <
input.length())
{
// get the next delimiter index
pos = input.find(delim, prev);
if (pos == string::npos)
{
// for end of index
pos = input.length();
}
// get the substring
string token = input.substr(prev, pos-prev);
// push the result in the array
if (!token.empty()) result.push_back(token);
prev = pos + delim.length();
}
// return result
return result;
}
int main(){
string input1,input2;
// get input of 2 lines
getline(cin,input1);
getline(cin,input2);
// split the strings
vector <string> line1 = split_line(input1,",");
vector <string> line2 = split_line(input2," ");
// corresponding to hashmap in java
unordered_map<string,string> mapping;
for (int i = 0; i < line1.size(); i++)
{
// split the string before and after '='
vector <string> temp = split_line(line1[i],"=");
// put key and value in map
mapping[temp[0]]=temp[1];
}
for (int i = 0; i < line2.size(); i++)
{
// get the template type in given position
string temp = line2[i].substr(1,line2[i].size() - 2);
// get the template value from map
line2[i] = mapping[temp];
// print it
cout << line2[i] << " ";
}
return 0;
}
Sample run:

Code screenshots:


Convert Code from Java to C++ Convert : import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class...
I need help running this code. import java.util.*; import java.io.*; public class wordcount2 { public static void main(String[] args) { if (args.length !=1) { System.out.println( "Usage: java wordcount2 fullfilename"); System.exit(1); } String filename = args[0]; // Create a tree map to hold words as key and count as value Map<String, Integer> treeMap = new TreeMap<String, Integer>(); try { @SuppressWarnings("resource") Scanner input = new Scanner(new File(filename));...
Explain this java code, please. import java.util.Scanner; public class Program11 { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); final int maxSize = 128; String[] titles = new String[maxSize]; int[] lengths = new int[maxSize]; int numDVDs = 0; String op; op = menu(stdIn); System.out.println(); while (!op.equalsIgnoreCase("q")) { if (op.equalsIgnoreCase("a")) { if (numDVDs < maxSize) numDVDs = addDVD(titles, lengths, numDVDs, stdIn); } else if (op.equalsIgnoreCase("t")) searchByTitle(titles, lengths, numDVDs, stdIn); else if (op.equalsIgnoreCase("l")) searchByLength(titles, lengths, numDVDs, stdIn); System.out.println('\n');...
import java.util.Scanner; public class Chpt7_Project { public static void bubbleSort(int[] list) { int temp; for (int i = list.length - 1; i > 0; i--) { for (int j = 0; j < i; j++) { if (list[j] > list[j + 1]) { temp = list[j]; list[j] = list[j + 1]; list[j + 1] = temp; } } } ...
Consider the following sample program: import java.util.Scanner; public class Palindrome { public static void main(String[] args){ Scanner kb = new Scanner(System.in); System.out.println("Enter a word:"); String word = kb.next(); String reverse = ""; for (int i=word.length()-1; i>=0; i--) reverse += word.charAt(i); boolean result = reverse.equalsIgnoreCase(word); if (result) System.out.println("The word " +word+ " is a Palindrome."); else System.out.println("The word " +word+ " is not a Palindrome."); } } Rewrite the program so that the main method is: public static void...
convert this program from java to c++ import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String name,seat,fcls; int st,i; String price; int ch1; char ch; seat=""; String time[]={"7.00","9.00","11.00","13.00","15.00"}; String arrive[]={"9.30","11.30","13.30","15.30","17.30"}; int cp[]=new int[5]; do{ System.out.println("Welcome to CSO1511 Flight Booking System"); System.out.println("Enter full name?"); name=sc.nextLine(); System.out.println("The available travel times for flights are:"); System.out.println(" Depart \t Arrive"); System.out.println("1. 7.00 \t\t 9.30"); System.out.println("2. 9.00 \t\t 11.30"); System.out.println("3. 11.00 \t\t 13.30"); System.out.println("4. 13.00 \t\t 15.30"); System.out.println("5. 15.00 \t\t...
I need the following java code commented import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner (System.in); int productNo=0; double product1; double product2; double product3; double product4; double product5; int quantity; double totalsales=0; while(productNo !=0) System.out.println("Enter Product Number 1-5"); productNo=input.nextInt(); System.out.println("Enter Quantity Sold"); quantity=input.nextInt(); switch (productNo) { case 1: product1=1.00; totalsales+=(1.00*quantity); break; case 2: product2=2.00; totalsales+=(2.00*quantity); break; case 3: product3=6.00; totalsales+=(6.00*quantity); break; case 4: product4=23.00; totalsales+=(23.00*quantity); break; case 5: product5=17.00; totalsales+=(17.00*quantity); break;...
import java.util.Scanner; public class TempConvert { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); //ask the user for a temperature System.out.println("Enter a temperature:"); double temp = scnr.nextDouble(); //ask the user for the scale of the temperature System.out.println("Is that Fahrenheit (F) or Celsius (C)?"); char choice = scnr.next().charAt(0); if(choice == 'F') { //convert to Celsius if given temperature was Fahrenheit System.out.println(temp + " degrees Fahrenheit is " + ((5.0/9) * (temp-32)) + " degrees Celsius"); } else {...
Need help with the UML for this code? Thank you. import java.util.Scanner; public class Assignment1Duong1895 { public static void header() { System.out.println("\tWelcome to St. Joseph's College"); } public static void main(String[] args) { Scanner input = new Scanner(System.in); int d; header(); System.out.println("Enter number of items to process"); d = input.nextInt(); ...
Can you help me with this code in Java??? import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int rows = 3; int columns = 4; int[][] arr = new int[rows][columns]; for(int i = 0; i < rows; ++i) { for(int j = 0; j < columns; ++j) { System.out.println("Enter a value: "); arr[i][j] = scan.nextInt(); } } System.out.println("The entered matrix:"); for(int i = 0; i < rows; ++i) { for(int j...
Given java code is below, please use it!
import java.util.Scanner;
public class LA2a {
/**
* Number of digits in a valid value sequence
*/
public static final int SEQ_DIGITS = 10;
/**
* Error for an invalid sequence
* (not correct number of characters
* or not made only of digits)
*/
public static final String ERR_SEQ = "Invalid
sequence";
/**
* Error for...