字符串变大写String  toUpperCase(String  Str)

功能:将字符串中的所有字母大写

返回值:返回处理完的字符串。

例:

    string  x="abcd";

x=toUpperCase(x);

x的结果为ABCD