java 输入N以内的全部素数
1 | package ex3; |
java 输入N以内的全部素数
1 | package ex3; |
#数据结构
##顺序栈
1 | #include<iostream> |
顺序表的插入、删除、遍历
1 | #include<iostream> |
编写一个Java应用程序,实现如下功能:
(1) 判断两个字符串是否相同,s1=”you are a student”,s2=”how are you”;
(2) 判断字符串”22030219851022024”的前缀、后缀是否和某个字符串”220302”相同;
(3) 按字典顺序比较两个字符串”你”和”我”的大小关系;
(4) 将数字型字符串”100”和”123.678”转换为数字;
(5) 将字符串”FEDCBA”存放到数组中,调用for循环读出数组数据显示在屏幕上。
————————————————
1 | package string; |
1、int compareTo(String anotherString) //按字典顺序比较两个字符串。返回值为一个数字
2、int indexOf(int ch) //返回指定字符在此字符串中第一次出现处的索引。最后结果是一个字符
int lastIndexOf(int ch) // 返回指定字符在此字符串中最后一次出现处的索引。返回结果为int型的数字
3、String substring(int beginIndex, int endIndex)//从原字符串截取一个子串,注:不能截到endIndex,只能截到他的前一位
4、int n1=Integer.parseInt(s6); //将s6转化成int型数据
double n2=Double.parseDouble(s7); //将s7转化成double型数据
String valueOf(int i) //返回 int 参数的字符串表示形式,将数字转化为字符
5、String s9=new String("ABCDEF");
char a[]=s9.toCharArray();//将s9存放到数组a中
1 | package hello; |
1 | package hello; |
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment