ejecutar algoritmo secuencial, condicional

2 ビュー (過去 30 日間)
adrian ayala
adrian ayala 2020 年 8 月 2 日

回答 (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!