Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 423 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 423 Bytes

ITA C# Training

C# Exercises for ITA staff

  • Fizz Buzz: Basic structure and tests
    • Test Conditions:
      • Number is evenly divisible by 3 return "Fizz"
      • Number is evenly divisible by 5 return "Buzz"
      • Number is evenly divisible by both 3 and 5 return "FizzBuzz"
      • Number is not evenly divisible by either return the number
    • Concepts
      • Logic abstraction and testing
      • Simple conditional logic