fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. int i;
  5. for ( i = 1; i < 100; i++)
  6. { if ((i % 3 ==0 || i %5 == 0)&& i % 2 !=0)
  7. {
  8. printf("%d",i);
  9. }
  10.  
  11.  
  12.  
  13. }
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.02s 25632KB
stdin
Standard input is empty
stdout
#include <stdio.h>
int main ()
{
 int i;
 for ( i = 1; i < 100; i++)
 { if ((i % 3 ==0 || i %5 == 0)&& i % 2 !=0)
 {
    printf("%d",i);
 }
 
 
    
 }
 
    return 0;
}