Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Bibliotecas
- import 'dart:io';
- // Principal
- void main(List<String> args) {
- // Entrada de dados
- var n = stdin.readLineSync()!;
- // Variaveis
- bool val = false;
- int pos_ini = 0, pos_fim = n.length - 1;
- // Estrutura de repeticao
- while (pos_ini < n.length) {
- if (n[pos_ini] == n[pos_fim - pos_ini]) {
- pos_ini++;
- } else {
- print("Nao Palindromo");
- val = false;
- break;
- }
- val = true;
- }
- // Condicional: Verdadeiro
- if (val == true) {
- print("# $n: Palindromo");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement