Contenido del Curso
C# Basics
C# Basics
Practicing Do-While Loop
There are two variables called numberA
and numberB
. The program is supposed to count from numberA
to numberB
.
If numberA
is bigger than numberB
then it should decrement the value of numberA
every step. If numberA
is smaller than numberB
then it should increment numberA
every step.
Also write the appropriate condition to end the loop.
main
using System; namespace ConsoleApp { internal class Program { static void Main(string[] args) { int numberA = 10; int numberB = 1; do { if (___) { numberA--; } else if (___) { numberA++; } Console.WriteLine(numberA); } while (___); } } }
- The loop should continue as long as the numbers are NOT equal (
!=
).
main
using System; namespace ConsoleApp { class Program { static void Main(string[] args) { int numberA = 10; int numberB = 1; do { if (numberA > numberB) { numberA--; } else if (numberA < numberB) { numberA++; } Console.WriteLine(numberA); } while (numberA != numberB); } } }
¡Gracias por tus comentarios!