using System; class Program { publicstaticvoid Main(string[] args) { int number = 1000000; while (number >= 1) { Console.WriteLine(number); number = number / 2; { Console.WriteLine(number); if(number==3){ Console.WriteLine("I found 3!"); } } } } } This code is written in C# and it starts with 1,000,000 and it divides it in half until the last number is 0. Something went wrong with the program and it prints the same number twice. how can that be fixed so it only prints out the numbers once instead of duplicating them before moving on the next? sorry if that doesn't make much sense!

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
using System;
class Program
{
publicstaticvoid Main(string[] args)
{
int number = 1000000;
while (number >= 1)
{
Console.WriteLine(number);
number = number / 2;
{
Console.WriteLine(number);
if(number==3){
Console.WriteLine("I found 3!");
}
}
}
}
}
 
 
This code is written in C# and it starts with 1,000,000 and it divides it in half until the last number is 0. Something went wrong with the program and it prints the same number twice. how can that be fixed so it only prints out the numbers once instead of duplicating them before moving on the next? sorry if that doesn't make much sense!
Run
main.c P Start thread
Console
Shell
1 þsing System;
> mcs -out:main.exe main.cs
> mono main.exe
1000000
500000
500000
class Program
{
public static void Main(string[] args)
3
4
5
{
250000
int number = 1000000;
250000
while (number >= 1)
{
Console.Writeline(number);
7
125000
125000
62500
10
number = number / 2;
62500
31250
{
Console.Writeline(number);
11
31250
12
15625
if(number==3){
Console.Writeline("I found 3!");
13
15625
14
7812
15
}
7812
3906
16
}
3906
17
1953
18
}
1953
19
976
976
488
BRE
488
244
244
122
122
61
61
30
30
15
15
7
7
3
I found 3!
1
1
Transcribed Image Text:Run main.c P Start thread Console Shell 1 þsing System; > mcs -out:main.exe main.cs > mono main.exe 1000000 500000 500000 class Program { public static void Main(string[] args) 3 4 5 { 250000 int number = 1000000; 250000 while (number >= 1) { Console.Writeline(number); 7 125000 125000 62500 10 number = number / 2; 62500 31250 { Console.Writeline(number); 11 31250 12 15625 if(number==3){ Console.Writeline("I found 3!"); 13 15625 14 7812 15 } 7812 3906 16 } 3906 17 1953 18 } 1953 19 976 976 488 BRE 488 244 244 122 122 61 61 30 30 15 15 7 7 3 I found 3! 1 1
Expert Solution
steps

Step by step

Solved in 3 steps with 2 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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education