kiwser

Untitled

Feb 27th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     int num;
  6.     for(num=1;num<=50;num++)
  7.     {
  8.         if(num%5==0)
  9.         {
  10.             printf("%d",num);
  11.         }
  12.     }
  13.     return 0;
  14. }
Add Comment
Please, Sign In to add comment