0
FOR LOOPS AND STRINGS
How to make a program that will display my COMPLETE name 10 times using for loop?
6 Antworten
+ 2
Example in Javascript
for (let i = 0; i < 10; i++) {
console.log("Marnie Francisco");
}
+ 1
thank you so muchh you are helpful
0
Using which language?
0
using c# language
0
thank youuu
0
In c#:
for(int i=1 ; i<=10 ; i++)
Console.Wrtieline("Marnie Francisco");