Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141111_Divisores
//Title of this code #include <stdio.h> int main(void) { short N; short d; printf("Valor de N ... "); scanf(" %hd", &N); for(d = 1 ; d <= N ; d++) { if(N % d == 0) { printf("%hd ", d); } } return 0; }
run
|
edit
|
history
|
help
0
gets.c
Function practice
B_141209_TrianguloTartalia
pointer example 3
GCC supports 128-bit integer arithmetic
22nd HW Switchv0.24
hwk2
summing long int
PER problem 2
Lab 9 v0.95