摘要:
编程求和:s=a+aa+aaa+aaaa+ „„+aaaa„aaa(n个),其中a为1~9中的一个数字。 提示:若第一项为a , 以后每一项由前一项乘以10加上a递推得到,然后求和。 阅读全文
2017年11月20日
2017年11月19日
2017年11月18日
2017年11月16日
2017年11月15日
摘要:
//定义人类接口 interface Human{ abstract void eat(); } //定义老师接口 interface Teacher extends Human{ void work(); } //定义学生类 abstract class Student implements Human{ String name; String sex; ... 阅读全文