spasnikolov131

Untitled

Feb 16th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Top_Number
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int topInteger = int.Parse(Console.ReadLine());
  10. int result = 0;
  11.  
  12. for (int i = 0; i < topInteger; i++)
  13. {
  14. if (topInteger % 8 == 0)
  15. {
  16. result++;
  17. }
  18. }
  19.  
  20. Console.WriteLine(result);
  21.  
  22. }
  23. }
  24. }
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment