Generation

generate functionThu, 18 May 2023

Mostrar todos los múltiplos de 8 que hay hasta el valor 500. Debe aparecer en pantalla 8 - 16 - 24, etc.

int main(){ int i; for(i=8;i<=500;i+=8){ printf("\n%d",i); } return 0; }

Questions about programming?Chat with your personal AI assistant