Jump to content
PirateClub.hu

Egy kis útmutatás, segítség kellene


0123jani
 Share

Recommended Posts

Sziasztok! Egy kis segítségért fordulok most hozzátok. Programozásom van, és elakadtam egy kicsit az egyik házi feladatban. A feladat az lenne, hogy a program bekér egy szöveget és az fordítva íratja ki nem a betűket hanem a szavakat. Pl.: az alma piros és finom. --> finom és piros alma az.

Szóval erre kellene nekem egy programot írni, de én csak azt tudom megírni, hogy a betűket fordítsa meg:

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

 

namespace ConsoleApplication1

{

class Program

{

static void Main(string[] args)

{

string sz = "", fordsz = "";

int i = 0;

Console.Write("Kérem a szöveget: ");

sz = Console.ReadLine();

for (i = sz.Length - 1; i >= 0; i--) fordsz = fordsz + sz;

Console.WriteLine("A szöveg megfordítva:");

Console.WriteLine(fordsz.ToUpper());

 

 

 

 

 

 

Console.ReadKey();

}

}

}

 

Mi lenne az amit át kellene írni? vagy megtudná nekem írni valaki a progamot?:$ Köszönöm szépen előre is Mindenkinek!

Link to comment
Share on other sites

A beolvasott sort szavakra tördeled (Split), a sorrendjét megfordítod (Array.Reverse), egymás után kiírod (foreach)..

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Kérem a szöveget: ");
            String s = Console.ReadLine();

            string[] words = s.Split(' ');
            Array.Reverse(words);

            Console.WriteLine("A szöveg megfordítva:");
            foreach (string word in words)
            {
                Console.Write(word + " ");
            }
        }
    }
}

 

 

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.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Hozzászólás a témához...

×   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.

 Share

  • Jelenleg olvassa   0 members

    • No registered users viewing this page.
×
×
  • Create New...