Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
numeroleidodeordeninverso
#include <stdio.h> #include <stdlib.h> int main(void) { long long n, n3, n2, m, i; printf("Introduzca valor de n = "); scanf(" %lld", &n); m = 0; while(n > 0) { n3 = n/10; n2 = n3*10; i = n-n2; m=(m*10) + i; n=n/10; } printf("%lld \n\n", m); return 0; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
MÓDULO 3, PREGUNTA 1, GUÍA 4
Project 3 Part 1 v1.4
141122_PI6
fgets and basic string manipulation
Lp
c
use_of_bool_in_loop
18BCE2182 ASSESS_2 Q3
SortedMerge
day 2
Please log in to post a comment.