Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1.             int number = 98;
  2.             int count = 0;
  3.             while (number > count){
  4.                 count += 7;
  5.                 Console.WriteLine(count);
  6.             }
  7.             Console.WriteLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement