using System;
using System.Text;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void TrimEnd(StringBuilder sb, char ch)
{
if (sb[sb.Length - 1] == ch)
{
sb.Length -= 1;
}
}
static void Main(string[] args)
{
StringBuilder sb = new StringBuilder("c# java c++!");
TrimEnd(sb, '!');
Console.WriteLine(sb);
}
}
}
/*
run:
c# java c++
*/