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
Lab 5 HW Spring 2017 v0.5
MatrixMul_shortxshort
Bitwise Operations
bitmask shift
C_141126_ArrayMayorMenor01
2.2 Comparision with Matrix Addition Execution Time
18BCE2182 ASSESS_1 Q1-8
CO_assign_q1
K&R/1_5
3-D array sum and search