Math, asked by Hunter9289, 10 months ago

1 se lekar 100 tak ginti me 3 kitne baar aata hai

Answers

Answered by mananmsk07
0

Answer:

1 se lekar 100 tak ginti me 3 EK BAAR AATA  HAI

PLZZ MARK AS BRAINLIEST

Step-by-step explanation:

Answered by Afreenakbar
0

Numbers from 1 to 100 in which 3 appears.

  • To find the number of times the digit 3 appears in the counting numbers from 1 to 100, we can use division and modulus operator.
  • We can divide each number by 10 and check the remainder when divided by 10, if the remainder is 3, then it's a multiple of 3.

  • Here's a Python code snippet that counts the number of times the digit 3 appears from 1 to 100

count = 0

for i in range(1,101):

   if i % 10 == 3:

       count += 1

   if i // 10 == 3:

       count += 1

print(count)

The output of this code is 20, which means the digit 3 appears 20 times from 1 to 100 in counting numbers.

We can also check the number by hand, 3,13,23,30,31,32,33,34,35,36,37,38,39,43,53,63,73,83,93 is the list of numbers from 1 to 100 in which 3 appears.

To know more about  number visit : https://brainly.in/question/200066

https://brainly.in/question/20731033

#SPJ3

Similar questions