Answer :
Answer:
Answered below.
Explanation:
This challenge is solved using Python programming language.
#First getting the inputs and storing them in #variables s1, s2, s3
s1 = input ("Enter first string: ")
s2 = input("Enter second string: ")
s3 = input ("Enter third string: ")
#Then joining them with commas to make one #string.
joined_with_commas = "$s1 , $s2 , $s3"
print (joined_with_commas)
There are a couple of ways to build string in Programming, in this exercise we will be using the String Template method.
Let us implement this Algorithm using the Kotlin Programming Language
//Declaring variables
var s1 = "This"
var s2 = "is"
var s3 = "Brainly"
// We will using the string Template to set values for the final variable
var joined_with_commas = "$s1 ,$s2 , $s3"
//The expected output will be "This, is, Brainly"
Learn more about String Template:
https://brainly.com/question/25619349