Computer Science, asked by singhsrijan350, 2 months ago

WAP to generate the following output :- * , *# , *#* , *#*# , *#*#*#​

Answers

Answered by shubhrakanha2904
0

Answer:

this is in JavaScript language.

var x = *;

var y = #;

var repeat = 0;

function draw () {

text (x + "," + x+y + "," + x+y+x + "," + x+y+x+y + "," + x+y+x+y+x+y, 15, 20);

}

Similar questions