English, asked by georgeschami15, 7 months ago

Using for loop, write a two lines code that produces the following output: 50, 70, 90, 110, 130, 150, 170, 190, 210, 230, *

Answers

Answered by dineshkumaryadav55
0

Explanation:

for (int i = 50 ,' i> 50 ', i+=20)

{

System. out. print ('i') ',

}

Answered by mayankrakhejapb1qvj
0

Answer:

I'm not sure which langauge you are using.

let number= 50

while(number <= 230){

console.log(number). [for JS]

print number. [for Ruby or Python]

number= number+20}

Similar questions