Jump to content
Fórum Script Brasil
  • 0

retornando array de char


marcoa

Question

estou usando o C++Builder6 para fazer o programa,

criei esta função para inverter variaveis do tipo String.

String inverter(String txt)
{
        String invertida = "", temp = "";
        for(int i = txt.Length(); i > 0; i--)
        {
         temp = temp + txt.SubString(i,1);
        }
        invertida = temp;
        return invertida;
}
queria faze-la sem ultilizar a variavel String e sim char[], tentei algo como:
#define MAX 5
char inverter[MAX](char txt[MAX])
{
        char invertida[MAX] = "", temp[MAX] = "";
        int n = 0;
        for(int i = MAX; i > 0; i--)
        {
         temp[n] = txt[i-1];
         n++;
        }

        invertida = temp;
        return invertida;
}

mas não funciona, ajudem...

Edited by marcoa
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

acabei nem criando uma função, coloquei logo no main (da na mesma), muito obrigado

OBS: ultilizei scanf para facilitar a verificação da entrade de no maximo 10 digitos

#include <stdio.h>
#include <iostream.h>
#define MAX 10

int main()
{
        char entrada[MAX] = "" , temp[MAX] = "" , saida[MAX] = "";

        cout << "Digite um texto de ate 10 caracteres:" << endl;
        scanf("%10s",&entrada);

        //transforma '' em ' ' (espaço)
        for(int y = 0; y < MAX; y++)
        {
         if(entrada[y] == '\0')
         {
          entrada[y] = ' ';
         }
        }

        int n = 0;
        for(int i = MAX; i > 0; i--)
        {
                 temp[n] = entrada[i-1];
                 n++;
        }

        for(int y = 0; y < MAX; y++)
        {
         saida[y] = temp[y];
        }

        //RETORNAR RESULTADOS
        system("CLS");
        cout << "TEXTO NORMAL   : \"" << entrada << "\"" << endl;
        cout << "TEXTO INVERTIDO: \"" << saida << "\"" << endl;
        system("PAUSE");
        return 0;
}

OBS2: NA LINHA 15, por algum motivo o forum não deixou escrever:

if(entrada[y] == '\0')

o proprio forum substitui '\0' por ''

Edited by marcoa
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...