110,892
社区成员
发帖
与我相关
我的任务
分享
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
Regex reg = new Regex(@"^(sin|lg|ln|cos)\(([1-9]\d*)|\d\)$");
while (true)
{
Console.WriteLine(reg.IsMatch(Console.ReadLine()));
}
}
}
}