A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# program to create a new string of four copies, taking last four characters from a given string. If the length of the given string is less than 4 return the original one
Q:

Write a C# program to create a new string of four copies, taking last four characters from a given string. If the length of the given string is less than 4 return the original one

0

Write a C# program to create a new string of four copies, taking last four characters from a given string. If the length of the given string is less than 4 return the original one

Sample Output:

Input a string : The quick brown fox jumps over the lazy dog.     
dog.dog.dog.dog.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

public class Exercise32 {
  static void Main(string[] args)
        {
           string str; 
           int l= 0;
           Console.Write("Input a string : ");
           str = Console.ReadLine();
           if (str.Length>4)
           {
              Console.WriteLine(str.Length < 4 ? str + str + str : str.Substring(str.Length - 4)+ str.Substring(str.Length - 4) + str.Substring(str.Length - 4) + str.Substring(str.Length - 4));
           }
        }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now