/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Ejercicio Propuesto 12.1: Número múltiplo de 3
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

#include <stdio.h>

int main()
{
   int numero;

   printf( "\n   Introduzca un numero entero: " );
   scanf( "%d", &numero );

   if ( numero % 3 == 0 )
      printf( "\n   ES MULTIPLO DE 3" );
   else
      printf( "\n   NO ES MULTIPLO DE 3" );

   return 0;
}
