CODING-CODING SEDERHANA

#include <stdio.h>
#include <iostream.h>
main ()
{
 for(int i=1; i<100; i=i+2)

 cout<< i <<" ";
}

Bilangan ganjil dengan FOR

Comments