-
Lenguaje
C
-
Descripción
Determinar si un valor N es múltiplo de un valor Z.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
int N, Z;
printf ("Ingresa el valor de N: ");
scanf ("%d", &N);
(void) getchar ();
printf ("Ingresa el valor de Z: ");
scanf ("%d", &Z);
(void) getchar ();
if(Z%N==0)
printf ("N es m\243ltiplo de un Z.\n");
else
printf ("N no es m\243ltiplo de un Z.\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int N, Z;
printf ("Ingresa el valor de N: ");
scanf ("%d", &N);
(void) getchar ();
printf ("Ingresa el valor de Z: ");
scanf ("%d", &Z);
(void) getchar ();
if(Z%N==0)
printf ("N es m\243ltiplo de un Z.\n");
else
printf ("N no es m\243ltiplo de un Z.\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}