Write a C# program to create a new string from a given string (length 1 or more ) with the first character added at the front and back
- برمجة سي شارب
- برمجة
- 2021-05-14
- MarwaMohammed
الأجوبة
using System;
using System.Text;
public class Exercise17 {
static void Main(string[] args)
{
string str;
int l= 0;
Console.Write("Input a string : ");
str = Console.ReadLine();
if (str.Length>=1)
{
var s = str.Substring(0,1);
Console.WriteLine(s + str + s);
}
}
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال