📌  相关文章
📜  打印字符串中每个单词的第一个和最后一个字符

📅  最后修改于: 2022-05-13 01:57:07.181000             🧑  作者: Mango

打印字符串中每个单词的第一个和最后一个字符

给定一个字符串,任务是打印字符串。
例子:

Input: Geeks for geeks
Output: Gs fr gs

Input: Computer applications
Output: Cr as

方法

  1. 从第一个字母到最后一个字母循环。
  2. 打印字符串的第一个和最后一个字母。
  3. 如果字符串中有空格,则打印位于空格之前和空格之后的字符。

下面是上述方法的实现。

C++
// CPP program to print
// the first and last character
// of each word in a String'
#include
using namespace std;
 
// Function to print the first
// and last character of each word.
void FirstAndLast(string str)
{
    int i;
 
    for (i = 0; i < str.length(); i++)
    {
        // If it is the first word
        // of the string then print it.
        if (i == 0)
            cout<


Java
// Java program to print
// the first and last character
// of each word in a String
 
class GFG {
 
    // Function to print the first
    // and last character of each word.
    static void FirstAndLast(String str)
    {
        int i;
 
        for (i = 0; i < str.length(); i++) {
 
            // If it is the first word
            // of the string then print it.
            if (i == 0)
                System.out.print(str.charAt(i));
 
            // If it is the last word of the string
            // then also print it.
            if (i == str.length() - 1)
                System.out.print(str.charAt(i));
 
            // If there is a space
            // print the successor and predecessor
            // to space.
            if (str.charAt(i) == ' ') {
                System.out.print(str.charAt(i - 1)
                                 + " "
                                 + str.charAt(i + 1));
            }
        }
    }
 
    // Driver code
    public static void main(String args[])
    {
        String str = "Geeks for Geeks";
        FirstAndLast(str);
    }
}


Python3
# Python3 program to print
# the first and last character
# of each word in a String'
 
# Function to print the first
# and last character of each word.
def FirstAndLast(string):
    for i in range(len(string)):
 
        # If it is the first word
        # of the string then print it.
        if i == 0:
            print(string[i], end = "")
 
        # If it is the last word of the string
        # then also print it.
        if i == len(string) - 1:
            print(string[i], end = "")
 
        # If there is a space
        # print the successor and predecessor
        # to space.
        if string[i] == " ":
            print(string[i - 1],
                  string[i + 1], end = "")
 
# Driver code
if __name__ == "__main__":
    string = "Geeks for Geeks"
    FirstAndLast(string)
 
# This code is contributed by
# sanjeev2552


C#
// C# program to print
// the first and last character
// of each word in a String
using System;
 
class GFG
{
 
    // Function to print the first
    // and last character of each word.
    static void FirstAndLast(string str)
    {
        int i;
 
        for (i = 0; i < str.Length; i++)
        {
 
            // If it is the first word
            // of the string then print it.
            if (i == 0)
                Console.Write(str[i]);
 
            // If it is the last word of the string
            // then also print it.
            if (i == str.Length - 1)
                Console.Write(str[i]);
 
            // If there is a space
            // print the successor and predecessor
            // to space.
            if (str[i] == ' ')
            {
                Console.Write(str[i - 1]
                                + " "
                                + str[i + 1]);
            }
        }
    }
 
    // Driver code
    public static void Main()
    {
        string str = "Geeks for Geeks";
        FirstAndLast(str);
    }
}
 
// This code is contributed by Ryuga


Javascript


输出:
Gs fr Gs