- 1、本文档共16页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Java生成绩查询系统
Chap 2
实践2-1
class Ex2_1{
public static void main(String[] args) {
float sum=0.0f,count=1.0f;
for(int i=1;i=20;++i){
count=1.0f;
for(int j=1;j=i;++j)
count*=j;
sum+=count;
}
System.out.println(1+2!+3!+...+20!的值为:+sum);
}
}
实践2-2
public class Ex2_2{
public static void main(String[] args) {
System.out.println(** 菲波拉挈数列的前20个数为:**);
long f1 = 1, f2 = 1;
for (int i = 1; i = 10; i ++) {
System.out.print(f1 + + f2 + );
if (i % 2 == 0) {
System.out.println();
}
f1 = f1 + f2;
f2 = f2 + f1;
}
}
}
Chap 3
实践3-1
public class Student
{ static String name=张三;
static int age;
public Student()
{
age=18;
}
public static void main(String args[])
{
System.out.println(姓名:+name+,年龄:+age);
}
}
实践3-2
class People{
String name;
People(String name){
=name ; //对成员变量name 初始化
}
}
class Student extends People{
String stuID;
Student(String name,String stuID){
super(name) ; //对继承自父类的成员变量name初始化
this.stuID=stuID ; //对成员变量stuID 初始化
}
}
public class PeopleDemo{
public static void main(String arg[]) {
Student stu=new Student(张三 ; //定义对象
System.out.println(+ +stu.stuID) ; //输出对象的姓名和学号
}
}
Chap 4
实践4-1
public class Ex4_1 {
String str;
public Ex4_1(String str) {
this.str = str;
}
int getlength(){
return(str.length());
}
public static void main(String[] args) {
Ex4_1 test = new Ex4_1(Hello);
System.out.println(字符串是:+test.str+ 长度为:+test.getlength());
}
}
实践4-2
import java.util.*;
import java.io.*;
public class Ex4_2{
public static void main(String[] args) {
String str1 = new String();
String str2 = new String();
char ch;
Scanner reader= new Scanner(System.in);
System.out.println(输入字符串:);
str1=reader.next(); //输入字符串
System.out.println(输入要删除的字符:);
str2=reader.next(); //输入穿要删除的字符 ,以字符串的形式输入
ch=str2.charAt(0);
您可能关注的文档
最近下载
- Unit 5 We’re family 第1课时(Get ready)(课件)外研版(三起)(2024)英语三年级上册.pptx
- 中国民间传说:田螺姑娘.ppt
- 医院岗位风险分级监管制度.docx VIP
- 八年级班级工作计划第一学期.pdf VIP
- 甘肃省平凉崆峒区2024年中考联考数学试卷含解析.doc
- 硅片加工表面抛光.ppt
- 正大猪三宝饲料推广会流程和操作实务.ppt
- 安徽省腰椎间盘突出症分级诊疗指南(2015年版)安徽省医学会(发布时间:2016-01).pdf VIP
- 国家食品安全抽样检验抽样单&填表说明.doc
- TASCAM达斯冠专业音响CD-RW901MKII说明书用户手册(1).pdf
文档评论(0)