필터 지우기
필터 지우기

ejecutar algoritmo secuencial, condicional

조회 수: 2 (최근 30일)

답변 (1개)

Wilmer Alexander - Conferencista en Automatización y Robótica más influyente en Iberoamérica
%Script: Reverse order of characters in strings
%Wilmer Alexander Ticona alexanderticona.com
clc
clear all
num=input('Ingrese número a invertir: ');
invn=num2str(num);
invn=reverse(invn);
invn=str2num(invn);
fprintf('El número invertido es: %1.0f unidades \n',invn)
  댓글 수: 1
Wilmer Alexander - Conferencista en Automatización y Robótica más influyente en Iberoamérica
Thanks for asking. Please accept my proposal if your questions were resolved. I remain at your disposal for any questions.

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!