Integer Examples in CS Thinking
Start with the recap, study the fully worked examples, then use the practice problems to check your understanding of Integer.
This page combines explanation, solved examples, and follow-up practice so you can move from recognition to confident problem-solving in CS Thinking.
Concept Recap
A data type that represents whole numbers (positive, negative, or zero) without decimal points. Integers are stored exactly in memory and support arithmetic operations like addition, subtraction, multiplication, and integer division.
Integers are counting numbers in code โ things you can count without fractions: age, score, quantity, index.
Read the full concept explanation โHow to Use These Examples
- Read the first worked example with the solution open so the structure is clear.
- Try the practice problems before revealing each solution.
- Use the related concepts and background knowledge badges if you feel stuck.
What to Focus On
Core idea: Integers are exact and efficient. Use them for counting and indexing. Use floats/decimals when you need fractions.
Common stuck point: Integer division truncates in many languages: 7 / 2 gives 3, not 3.5. This catches many beginners by surprise.
Sense of Study hint: When deciding whether to use an integer or a float, ask: does this value ever need a decimal point? If you are counting items, indexing arrays, or tracking scores, use an integer. If you need fractions or precise decimal values, use a float or decimal type.
Worked Examples
Example 1
easyAnswer
First step
Full solution
- 2 Step 2: Integer division (floor): (discard the decimal part).
- 3 Step 3: Modulo: (the remainder after dividing 17 by 5).
Example 2
mediumExample 3
mediumExample 4
mediumExample 5
mediumExample 6
hardExample 7
hardPractice Problems
Try these problems on your own first, then open the solution to compare your method.
Example 1
easyExample 2
mediumExample 3
easyExample 4
easyExample 5
easyExample 6
easyExample 7
easyExample 8
easyExample 9
easyExample 10
easyExample 11
mediumExample 12
mediumExample 13
mediumExample 14
mediumExample 15
mediumExample 16
mediumExample 17
mediumExample 18
mediumExample 19
mediumExample 20
challengeExample 21
challengeExample 22
challengeExample 23
easyExample 24
easyExample 25
easyExample 26
easyExample 27
easyExample 28
easyExample 29
mediumExample 30
mediumExample 31
mediumExample 32
mediumExample 33
mediumExample 34
mediumExample 35
hardExample 36
hardExample 37
hardExample 38
hardExample 39
challengeExample 40
challengeRelated Concepts
Background Knowledge
These ideas may be useful before you work through the harder examples.