- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How many numbers of two digit are divisible by 3?
To do:
We have to find the number of two digits divisible by 3.
Solution:
Let $n$ be the number of terms which are divisible by $3$.
Let $a$ be the first term and $d$ be the common difference.
The first two-digit number divisible by $3$ is $12$.
This implies,
$a = 12, d = 3$, last term $a_n = 99$
$a_n = a + (n – 1) d$
$99 = 12 + (n – 1) \times 3$
$99- 12 = 3n – 3$
$3n = 87 +3$
$3n = 90$
$n=\frac{90}{3}$
$n=30$
Therefore, 30 two-digit numbers are divisible by 3.
- Related Articles
- How many two digit numbers are divisible by $3?$
- Find how many two-digit numbers are divisible by 6.
- How many three digit numbers are divisible by 7?
- How many three digit natural numbers are divisible by 7?
- Find the total two-digit numbers which are divisible by $5$.
- Find the sum of all 3-digit natural numbers which are divisible by 13.
- How many $3$ digit numbers are there in between $100$ to $550$?
- Find the number of all three digit natural numbers which are divisible by 9.
- How many 6- digit numbers are there in all ?
- How many seven digit numbers are there in all?
- Count n digit numbers divisible by given number in C++
- Find the sum of all 2-digit natural numbers divisible by 4.
- How many three-digit numbers can you make with 0,5,9 by using each digit once?
- 1870 is divisible by 22. Which two numbers nearest to 1870 are each divisible by 22?
- Largest N digit number divisible by given three numbers in C++

Advertisements