1 Star 0 Fork 0

杜王林/Objects Early

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
UppercaseTester.java 763 Bytes
一键复制 编辑 原始数据 按行查看 历史
LiSoul 提交于 2020-05-05 16:40 . update
public class UppercaseTester
{
public static void main(String[] args)
{
String lower1 = "hello";
String upper1 = lower1.toUpperCase();
System.out.println(upper1);
System.out.println("Expected: HELLO");
// Now compute and print the uppercase versions
// of the strings San José and Fuß. Also print the
// expected values.
String lower2 = "San José";
String upper2 = lower2.toUpperCase();
System.out.println(upper2);
System.out.println("Expected: "+upper2);
String lower3 = "Fuß";
String upper3 = lower3.toUpperCase();
System.out.println(upper3);
System.out.println("Expected: "+upper3);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xiaoduoo/Objects-Early.git
git@gitee.com:xiaoduoo/Objects-Early.git
xiaoduoo
Objects-Early
Objects Early
master

搜索帮助