1.编写一个程序,输入n,求n!(用递归的方式实现)。

复制代码
  1. public static long fac(int n){
  2. if(n<=0) return 0;
  3. else if(n==1) return 1;
  4. else return n*fac(n-1);
  5. }
  6. public static void main(String [] args) {
  7. System.out.println(fac(6));
  8. }
复制代码

2.编写一个程序,有1,2,3,4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?

复制代码
  1. public static void main(String [] args) {
  2. int i, j, k;
  3. int m=0;
  4. for(i=1;i<=4;i++)
  5. for(j=1;j<=4;j++)
  6. for(k=1;k<=4;k++){
  7. if(i!=j&&k!=j&&i!=k){
  8. System.out.println(""+i+j+k);
  9. m++;
  10. }
  11. }
  12. System.out.println("能组成:"+m+"个");
  13. }
复制代码

 3.编写一个程序,将text1.txt文件中的单词与text2.txt文件中的单词交替合并到text3.txt文件中。text1.txt文件中的单词用回车符分隔,text2.txt文件中用回车或空格进行分隔。

复制代码
  1. import java.io.File;
  2. import java.io.FileReader;
  3. import java.io.FileWriter;
  4. public class text{
  5. public static void main(String[] args) throws Exception{
  6. String[] a = getArrayByFile("text1.txt",new char[]{\'\n\'});
  7. String[] b = getArrayByFile("text2.txt",new char[]{\'\n\',\' \'});
  8. FileWriter c = new FileWriter("text3.txt");
  9. int aIndex=0;
  10. int bIndex=0;
  11.  
  12. while(aIndex<a.length){
  13. c.write(a[aIndex++] + "\n");
  14. if(bIndex<b.length)
  15. c.write(b[bIndex++] + "\n");
  16. }
  17. while(bIndex<b.length){
  18. c.write(b[bIndex++] + "\n");
  19. }
  20. c.close();
  21. }
  22.  
  23. public static String[] getArrayByFile(String filename,char[] seperators) throws Exception{
  24. File f = new File(filename);
  25. FileReader reader = new FileReader(f);
  26. char[] buf = new char[(int)f.length()];
  27. int len = reader.read(buf);
  28. String results = new String(buf,0,len);
  29. String regex = null;
  30. if(seperators.length >1 ){
  31. regex = "" + seperators[0] + "|" + seperators[1];
  32. }else{
  33. regex = "" + seperators[0];
  34. }
  35. return results.split(regex);
  36. }
  37. }
复制代码

4.639172每个位数上的数字都是不同的,且平方后所得数字的所有位数都不会出现组成它自身的数字。(639172*639172=408540845584),类似于639172这样的6位数还有几个?分别是什么?

这题采用的HashMap结构判断有无重复,也可以采用下题的数组判断。

复制代码
  1. public void selectNum(){
  2. for(long n = 100000; n <= 999999;n++){
  3. if(isSelfRepeat(n)) //有相同的数字,则跳过
  4. continue;
  5. else if(isPingFangRepeat(n*n,n)){ //该数的平方中是否有与该数相同的数字
  6. continue;
  7. }
  8. else{ //符合条件,则打印
  9. System.out.println(n);
  10. }
  11. }
  12. }
  13.  
  14. public boolean isSelfRepeat(long n){
  15. HashMap<Long,String> m=new HashMap<Long,String>();
  16. //存储的时候判断有无重复值
  17. while(n!=0){
  18. if(m.containsKey(n%10)){
  19. return true;
  20. }
  21. else{
  22. m.put(n%10,"1");
  23. }
  24. n=n/10;
  25. }
  26. return false;
  27. }
  28.  
  29. public boolean isPingFangRepeat(long pingfang,long n){
  30. HashMap<Long,String> m=new HashMap<Long,String>();
  31. while(n!=0){
  32. m.put(n%10,"1");
  33. n=n/10;
  34. }
  35.  
  36. while(pingfang!=0){
  37. if(m.containsKey(pingfang%10)){
  38. return true;
  39. }
  40. pingfang=pingfang/10;
  41. }
  42. return false;
  43. }
  44.  
  45. public static void main(String args[]){
  46. new test().selectNum();
  47. }
复制代码

 5.比如,968548+968545=321732732它的答案里没有前面两个数里的数字,有多少这样的6位数。

复制代码
  1. public void selectNum(){
  2. for(int n = 10; n <= 99;n++){
  3. for(int m = 10; m <= 99;m++){
  4. if(isRepeat(n,m)){
  5. continue;
  6. }
  7. else{
  8. System.out.println("组合是"+n+","+m);
  9. }
  10. }
  11. }
  12. }
  13.  
  14. public boolean isRepeat(int n,int m){
  15. int[] a={0,0,0,0,0,0,0,0,0,0};
  16. int s=n+m;
  17. while(n!=0){
  18. a[n%10]=1;
  19. n=n/10;
  20. }
  21.  
  22. while(m!=0){
  23. a[m%10]=1;
  24. m=m/10;
  25. }
  26.  
  27. while(s!=0){
  28. if(a[s%10]==1){
  29. return true;
  30. }
  31. s=s/10;
  32. }
  33. return false;
  34. }
  35.  
  36. public static void main(String args[]){
  37. new test().selectNum();
  38. }
复制代码

6.给定String,求此字符串的单词数量。字符串不包括标点,大写字母。例如 String str=”hello world hello hi”;单词数量为3,分别是:hello world hi。

复制代码
  1. public static void main(String [] args) {
  2. int count = 0;
  3. String str="hello world hello hi";
  4. String newStr="";
  5. HashMap<String,String> m=new HashMap<String,String>();
  6. String [] a=str.split(" ");
  7. for (int i=0;i<a.length;i++){
  8. if(!m.containsKey(a[i])){
  9. m.put(a[i],"1");
  10. count++;
  11. newStr=newStr+" "+a[i];
  12. }
  13. }
  14. System.out.println("这段短文单词的个数是:"+count+","+newStr);
  15. }
复制代码

7.写出程序运行结果。

复制代码
  1. public class Test1 {
  2. private static void test(int[]arr) {
  3. for (int i = 0; i < arr.length; i++) {
  4. try {
  5. if (arr[i] % 2 == 0) {
  6. throw new NullPointerException();
  7. } else {
  8. System.out.print(i);
  9. }
  10. }
  11. catch (Exception e) {
  12. System.out.print("a ");
  13. }
  14. finally {
  15. System.out.print("b ");
  16. }
  17. }
  18. }
  19. public static void main(String[]args) {
  20. try {
  21. test(new int[] {0, 1, 2, 3, 4, 5});
  22. } catch (Exception e) {
  23. System.out.print("c ");
  24. }
  25. }
  26. }
复制代码

运行结果:a b 1b a b 3b a b 5b

复制代码
  1. public class Test1 {
  2. private static void test(int[]arr) {
  3. for (int i = 0; i < arr.length; i++) {
  4. try {
  5. if (arr[i] % 2 == 0) {
  6. throw new NullPointerException();
  7. } else {
  8. System.out.print(i);
  9. }
  10. }
  11. finally {
  12. System.out.print("b ");
  13. }
  14. }
  15. }
  16. public static void main(String[]args) {
  17. try {
  18. test(new int[] {0, 1, 2, 3, 4, 5});
  19. } catch (Exception e) {
  20. System.out.print("c ");
  21. }
  22. }
  23. }
复制代码

运行结果:b c

8.单词数

 统计一篇文章里不同单词的总数。

Input

  有多组数据,每组一行,每组就是一篇小文章。每篇小文章都是由小写字母和空格组成,没有标点符号,遇到#时表示输入结束。

Output

  每组值输出一个整数,其单独成行,该整数代表一篇文章里不同单词的总数。

Sample Input

you are my friend

#

 

Sample Output

4

复制代码
  1. public static void main(String [] args) {
  2. List<Integer> countList=new ArrayList<Integer>();
  3. int count;
  4. HashMap<String,String> m;
  5. String str; //读取键盘输入的一行(以回车换行为结束输入)
  6. String[] a;
  7.  
  8. Scanner in=new Scanner(System.in);
  9. while( !(str=in.nextLine()).equals("#") ){
  10. a=str.split(" ");
  11. m=new HashMap<String,String>();
  12. count = 0;
  13. for (int i=0;i<a.length;i++){
  14. if(!m.containsKey(a[i]) && (!a[i].equals(""))){
  15. m.put(a[i],"1");
  16. count++;
  17. }
  18. }
  19. countList.add(count);
  20. }s
  21.  
  22. for(int c:countList)
  23. System.out.println(c);
  24. }

版权声明:本文为CodingAndRiding原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/CodingAndRiding/p/7618413.html