/* Declaramos Librerias */
#include
#include
main() /* Iniciamos programa */
{
int a,b,c,d; /* Declaramos enteros */
printf("ingresar el numero al que quieres saber sus multiplos:");
scanf("%d",&a); /* Escaneamos el valor y lo guardamos en a */
/* Se crea un ciclo; b inicia en 1 y mientras sea menor o igual a 100 repite el ciclo, añadiendo 1 a b */
for(b=1;b<=100;b++)
{
c=a*b;
if (c<=100)
printf("%d ",c);
}
getch();
}
One of the most astonishing old town on the planet Old City of Jerusalem
-
Jerusalem is perhaps the most established city on the planet . By measuring
its history and its multifaceted nature, on the off chance that we think
about ...
Hace 5 años
0 comentarios:
Publicar un comentario