Advertisement
dsdeep

Task-1.2

Feb 28th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int tmp=0;
  5.     for(int i=1; i<=100; i++)
  6.     {
  7.         if(i%19==0)
  8.         {
  9.         printf("%d\n",i);
  10.         tmp++;
  11.         }
  12.  
  13.     }
  14.     printf("Total %d Number Is Divisible\n",tmp);
  15.     return 0;
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement