using System; class Program {   public static void Main(string[] args)   {   int number = 1;   while (number <= 1000)     {       Console.WriteLine(number);     number = number + 1;     }   } } this program counts from 1-1000 in C#. how would it be changed to use the += operator to add one to number, instead of writing number = number + 1?

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter9: Completing The Basics
Section: Chapter Questions
Problem 7PP
icon
Related questions
Question
100%

using System;
class Program
{
  public static void Main(string[] args)
  {
  int number = 1;
  while (number <= 1000)
    {
      Console.WriteLine(number);
    number = number + 1;
    }
  }
}

this program counts from 1-1000 in C#. how would it be changed to use the += operator to add one to number, instead of writing number = number + 1?

Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT