170k views
5 votes
create a procedure that takes 2 parameters, a string that you get from a user input and an int. Make the procedure print the string the number of times the int parameter gives and call the procedure???

create a procedure that takes 2 parameters, a string that you get from a user input-example-1
User Ialm
by
3.2k points

1 Answer

6 votes

Answer:

Here is kind of an example: var greeting1 = "Hello, Jackson, how are you?";

println(greeting1);

var greeting2 = "Hello, Mr. H, how are you?";

println(greeting2);

var greeting3 = "Hello, Stranger, how are you?";

println(greeting3);

Step-by-step explanation:

User Nay Lin Aung
by
3.7k points