-
1. 标识符可以由字母、数字、下划线(_)、美元符($)组成,但不能包含 @、%、空格等其它特殊字符,不能以数字开头。譬如:123name 就是不合法滴
2. 标识符不能是 Java 关键字和保留字( Java 预留的关键字,以后的升级版本中有可能作为关键字),但可以包含关键字和保留字。如:不可以使用 void 作为标识符,但是 Myvoid 可以
3. 标识符是严格区分大小写的。 所以涅,一定要分清楚 imooc 和 IMooc 是两个不同的标识符哦!
4. 标识符的命名最好能反映出其作用,做到见名知意
查看全部 -
public class HelloWorld{
public static void main(String[] args){
int i = 0;
int j = 0;
for (i = 1; i <= 9; i++) {
for (j = 1; j <= i; j++) System.out.print(i + "*" + j + "=" + (i * j) +" ");
System.out.println();
}
}
}
查看全部 -
/**
* 题目:海滩上有一堆桃子,五只猴子来分。 第一只猴子把这堆桃子凭据分为五份,多了一个,这只猴子把多的一个扔入海中,拿走了一份。
* 第二只猴子把剩下的桃子又平均分成五份,又多了一个,它同样把多的一个扔入海中,拿走了一份,
* 第三、第四、第五只猴子都是这样做的,问海滩上原来最少有多少个桃子?
*/
public class HelloWorld{
public static void main(String[] args){
int x=1;
for (int i = 1; i <= 5; i++) {
x=x*5+1;
}
System.out.println(x);
}
}
查看全部 -
/**
* 题目:两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。 以抽签决定比赛名单。有人向队员打听比赛的名单。
* a说他不和x比,c说他不和x,z比,请编程序找出三队赛手的名单。
*/
public class HelloWorld{
public static void main(String[] args){
for(char a='X';a<='Z';a++){
for(char b='X';b<='Z';b++){
if(a!=b){
for(char c='X';c<='Z';c++){
if(c!=a&&c!=b){
if(a!='X'&&c!='X'&&c!='Z'){
System.out.println("比赛名单为:");
System.out.println("a与"+a+"比");
System.out.println("b与"+b+"比");
System.out.println("c与"+c+"比");
}
}
}
}
}
}
}
}
查看全部 -
/*
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
1.程序分析:利用for循环语句,if条件语句。
**/
public class HelloWorld{
public static void main(String[] args){
String x="SADSADpvijosijv :k/?H132345";
int num=0;
int english=0;
int space=0;
int others=0;
char[] strCharArray = x.toCharArray();//工具别管;
for (char chars : strCharArray) {//重复比数组;
if (chars >= '0' && chars <= '9') {
num++;
} else if ((chars >= 'a' && chars <= 'z') || (chars >= 'A' && chars <= 'Z')) {
english++;
} else if (chars == ' ') {
space++;
} else {
others++;
}
}System.out.println(x+"含有数字"+num+"含有字母"+english+"含有空格"+space+"其他"+others);
}
}
查看全部 -
/**题目:一个数如果恰好等于它的因子之和,这个数就称为"完数"。6=1+2+3.编程找出1000以内的所有完数。
*/
public class HelloWorld{
public static void main(String[] args){
for(int i=2;i<=1000;i++){
int x=0;
for(int y=1;y<i;y++){
if(i%y==0){
x=x+y;
}
}if(x==i){
System.out.println(x);
}
}
}
}
查看全部 -
1111查看全部
举报