请问这里怎么改才可以运行?
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
private string cc;
public string abc(string cc)
{
string c = "龙";
int d = 22;
string a = "你的名字叫" + c;
string b = "你的年龄是" + d + "岁";
this.cc=a+b;
if (d < 25)
{
cc = "你还年轻,请努力!";
cc += cc;
}
else if (d > 25 && d <= 35)
{
cc = "人到中年,更加努力!";
cc += cc;
}
else
{
cc="年老里吧!";
cc += cc;
}
return cc;
}
static void Main(string[] args)
{
Console.WriteLine("{0}",cc);
Console.Read();
}
}
}