Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
C_141113_euclides
//Title of this code #include <stdio.h> int main(void) { short a, b; short ca, cb, aux; printf("Valor de a ... "); scanf(" %hd", &a); printf("Valor de b ... "); scanf(" %hd", &b); ca = a; cb = b; while(cb != 0) { aux = ca; ca = cb; cb = aux % cb; } printf("El mcd de %hd y %hd es %hd\n\n", a, b, ca); return 0; }
run
|
edit
|
history
|
help
0
Print Bash Version.c
Warnings
Lab 9 v0.965
acepta el reto 146
FUNCION strstr()
incrementing values in an array
SOLUCION USANDO UN CICLO Y PUNTERO
B_141202_CADENA_NUMERO
Add c
Project 4 v1.1