Java 新手习题()

循环

1.(for 循环)计算1+2+3+…+100 的和

package com.fxm.day03.test;
public class day03test1{public static void main(String[] args){int sum = 0;for(int i = 1; i < 101; i++){sum += i;}System.out.println("1到100的和:"+sum);} 
}

2.(for 循环)计算1+3+5+…+99 的和。

package com.fxm.day03.test;
public class day03test2{public static void main(String[] args){int sum = 0;for(int i = 1; i < 100; i += 2){sum += i;}System.out.println("1到100的奇数和为:"+sum);}
}

3.(while/do while循环)把1、2 两题用while 循环或do…while 循环改写。

package com.fxm.day03.test;
public class Day03test3{public static void main(String[] args){test1(100);test2(99); }public static int test1(int n){int sum = 0;while(n > 0){sum += n;n--;}System.out.println("1到100的和:"+sum);return 0;}public static int test2(int n){int sum = 0;while(n > 0){sum += n;n -= 2;}System.out.println("1到100的奇数和为:"+sum);return 0;}
}

4.(for 循环)读入一个小于10 的整数n,输出它的阶乘n!。

package com.fxm.day03.test;
public class Day03test4{public static void main(String[] args){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输入一个小于10的数:");int n = sc.nextInt();int result = 1;for(int i = 1; i <= n; i++){result *= i;}System.out.println("它的阶乘为:"+result);}
}

5.(循环)找出1~100之中,所有能被5整除,或者被6整除的数字。在控制台输出

package com.fxm.day03.test;
public class Day03Test5{public static void main(String[] args){System.out.println("输出1到100之间能被5或6整除的数:");for(int i = 1; i < 101; i++){if(i % 5 == 0||i % 6 == 0){System.out.print(" "+i);}}}
}

6.(循环)用户输入一个数字,列出所有它能够整除的数字。 比如用户输入48,那么控制台中将显示:

package com.fxm.day03.test;
public class Day03Test6{public static void main(String[] args){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输入一个数:");int n = sc.nextInt();System.out.println("它所以能整除的数有:");for(int i = 1; i <= n; i++){if(n % i == 0){System.out.println(i);}}}
}

7.(for 循环)求100 以内所有能被3 整除但不能被5 整除的数字的和。

package com.fxm.day03.test;
public class Day03Test7{public static void main(String[] args){int sum = 0;for(int i = 1; i < 100; i++){if(i % 3 == 0&&i % 5 != 0){sum += i;}}System.out.println("100以内所有能被3整除但不能被5整除的数字和:"+sum);}
}

8.(for 循环)“百钱买百鸡”是我国古代的著名数学题。
题目描述:3文钱可以买1只公鸡,2文钱可以买一只母鸡,1文钱可以买3只小鸡。 用100文钱买100 只鸡,那么各有公鸡、母鸡、小鸡多少只?

package com.fxm.day03.test;
public class Day03Test8{public static void main(String[] args){int x,y,z;for(x = 0;x < 100;x++){for(y = 0;y < 100;y++){for(z = 0;z < 100;z++){if(3*x+2*y+z/3==100&&z%3==0&&x+y+z==100){System.out.println("公鸡:"+x+" 母鸡:"+y+" 小鸡:"+z);}}}}}
}

优化如下:

package com.fxm.day03.test;
public class Day03Test8{public static void main(String[] args){int x,y,z;for(x = 0;x < 100;x++){for(y = 0;y < 100;y++){z = 100 - x - y;if(z % 3 != 0){continue;}if(3*x+2*y+z/3==100){System.out.println("公鸡:"+x+" 母鸡:"+y+" 小鸡:"+z);}}}}
}

9.(for 循环)搬砖问题:36 块砖,36 人搬,男搬4,女搬3,两个小孩抬1 砖, 要求一次 全搬完,问 男、女和小孩各若干?

package com.fxm.day03.test;
public class Day03Test9{public static void main(String[] args){int x,y,z;for(x = 1;x < 36;x++){for(y = 1;y < 36;y++){for(z = 2;z < 36;z+=2){if(x+y+z==36&&4*x+3*y+z/2==36){System.out.println("男:"+x+" 女:"+y+" 小孩:"+z);}}}}}
}

10.(for 循环)编程找出四位整数abcd 中满足 (ab+cd)(ab+cd)=abcd 的数。 例如abcd=1234,则ab=12,cd=34;

package com.fxm.day03.test;
public class Day03Test10{public static void main(String[] args){int a,b,c,d;for(a = 0;a < 10;a++){for(b = 0;b < 10;b++){for(c = 0;c < 10;c++){for(d = 0;d < 10;d++){if((10*a+b+10*c+d)*(10*a+b+10*c+d)==1000*a+100*b+10*c+d){System.out.println("a:"+a+" b:"+b+" c:"+c+" d:"+d);}}}}}}
}

优化如下:

package com.fxm.day03.test;
public class Day03Test10{public static void main(String[] args){for(int i = 1000;i < 9999;i++){int ab = i / 100;int cd = i % 100;if((ab+cd)*(ab+cd)==i){System.out.println(i);}}}
}

11.(循环)*读入一个整数n,输出如下图形 n = 3
n = 4
思路:
I. 读入的整数n,就是外层循环的循环次数。 II. 对于每一行,要做的事情: 1). 输出若干个空格; 2). 输出若干个星; 3). 换行。 提示:输出不换行,用System.out.print()。

package com.fxm.day03.test;
public class Day03Test11{public static void main(String[] args){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输入一个数:");int n = sc.nextInt();for(int i = 0;i < n;i++){for(int j = 0;j < n-i;j++){System.out.print(" ");}for(int k = 0;k <= 2*i;k++){System.out.print("*");}System.out.println();}}
}

12、利用循环,实现下面数据的输出结果。 1-3+5-7+…-99+101

package com.fxm.day03.test;
public class Day03Test12{public static void main(String[] args){int sum1 = 0;int sum2 = 0;for(int i = 1;i < 102;i+=4){sum1 += i;}for(int j = 3;j < 100;j+=4){sum2 += j;}int result = sum1 - sum2;System.out.println("1-3+5-7+бн-99+101="+result);}
}

13.(for循环)输出99 乘法表。

package com.fxm.day03.test;
public class Day03Test13{public static void main(String[] args){for(int i = 1;i < 10;i++){for(int j = 1;j <= i;j++){System.out.print(i+"*"+j+"="+i*j+" "+"\t");}System.out.println();}}
}

14.(for循环)求水仙花数。
提示:所谓水仙花数,是指一个三位数abc,如果满足a³+b³+c³=abc,则abc是水 仙花数。

package com.fxm.day03.test;
public class Day03Test14{public static void main(String[] args){for(int a = 0;a < 10;a++){for(int b = 0;b < 10;b++){for(int c = 0;c < 10;c++){if(a*a*a+b*b*b+c*c*c==100*a+10*b+c){System.out.print(a);System.out.print(b);System.out.print(c);System.out.println();}}}}}
}

函数

5.写一个函数,接受一个整数,返回这个整数是几位数

package com.fxm.day04.test;
import java.util.Scanner;
public class Day04Test05{public static void main(String[] args){Scanner sc = new Scanner(System.in);System.out.println("输入一个数:");int n = sc.nextInt();int x = test05(n);System.out.println("该数是"+x+"位数。");}public static int test05(int n){if(n == 0){return 1;}int i = 0;while(n != 0){n /= 10;i++;}return i;}
}

6.(函数嵌套)打印所有的三位数,该三位数等与其每位数字的阶乘之和。

package com.fxm.day04.test;
public class Day04Test06{public static void main(String[] args){for(int a = 0;a < 10;a++){for(int b = 0;b < 10;b++){for(int c = 0;c < 10;c++){if(100*a+10*b+c==test06(a)+test06(b)+test06(c)){System.out.print(a);System.out.print(b);System.out.print(c);System.out.println();}}}}}public static int test06(int a){if(a == 0){return 1;}return a*test06(a-1);}
}

7.(函数嵌套)如果整数A 的全部因子(包括1,不包括A本身)之和等于B,且整数B的全部 因 子包括1,不包括B 本身)之和等于A,则称整数A\B是一对亲密数。打印出3000 以内的全部 亲密数。

package com.fxm.day04.test;
public class Day04Test07{public static void main(String[] args){for(int A = 2;A < 3000;A++){for(int B = 2;B < 3000;B++){if(test07(A) == test07(B)&&A != B){System.out.println("A:"+A+" B:"+B);}}}}public static int test07(int a){int sum = 0;for(int i = 1;i < a;i++){if(a % i == 0){sum += i;}}return sum;}
}

8.(函数嵌套)验证哥德巴赫猜想:
任何一个大于6的偶数,都能分解成两个质数的和。要求输入 一个整数,输出这个 数能被 分解成哪两个质数的和。 eg : 14 14=3+11 14=7+7

package com.fxm.day04.test;
public class Day04Test08{public static void main(String[] args){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输入一个大于6的偶数:");int n = sc.nextInt();if(n % 2 != 0||n > 6){System.out.println("输入有误!!");}else{for(int n1 = 1;n1 <= n/2;n1++){int n2 = n - n1;if(test08(n1) && test08(n2)){System.out.println(n+"="+n1+"+"+n2);}}}}public static boolean test08(int n){if(n < 2){return false;}for(int i = 2;i < n;i++){if(n % i == 0){return false;}}return true;}
}

9、斐波那契数列的第1和第2个数分别为1和1,从第三个数开始,每个数等于其前两个数之 和(1,1,2,3,5,8,13….).写出一个函数,接受一个数表示数列序号,返回对应序号中序列的 值

package com.fxm.day03.test;
public class Day03Test15{public static void main(String[] args){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输出一个数:");int n = sc.nextInt();int a = shulie(n);System.out.print(a);}public static int shulie(int n){if(n ==1||n == 2){return 1;}return shulie(n-1) + shulie(n-2);}
}

10、写一个函数,接收一个整数n,判断这个数是不是质数。(质数是只能被1和它本身整除 的自然数,1本身不是质数)

package com.fxm.day04.test;
public class Day04Test10{public static void main(String[] args){test10(); }public static int test10(){java.util.Scanner sc = new java.util.Scanner(System.in);System.out.println("输入一个数:");int n = sc.nextInt();for(int i = 2;i < n;i++){if(n % i == 0){System.out.println("不是质数");break;}else if(i == n-1){System.out.println("是质数");}}return 0;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/440154.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

(ECC)椭圆曲线加密算法原理和C++实现源码

目录 &#xff08;1&#xff09;ECC加密原理&#xff1a; &#xff08;2&#xff09;编译生成LibTommath静态库 &#xff08;3&#xff09;ECC源码 今天介绍一下利用LibTommath数学库实现椭圆曲线加密算法的原理和源码。 &#xff08;1&#xff09;ECC加密原理&#xff1a;…

【POJ - 2553】The Bottom of a Graph(tarjan强连通分量缩点,模板题)

题干&#xff1a; We will use the following (standard) definitions from graph theory. Let V be a nonempty and finite set, its elements being called vertices (or nodes). Let E be a subset of the Cartesian product VV, its elements being called edges. Then G(…

c语言3种链接属性: 外部(external), 内部(internal),无设置(none)

c语言中&#xff0c;多个文件组合的时候&#xff0c;有可能标示名相同&#xff0c;那么这个时候编译器如何判别的呢&#xff1f; c语言中有3种链接属性: 外部&#xff08;external&#xff1a;可以被其他文件访问到&#xff09;, 内部(internal&#xff1a;无法被其他文件访问到…

java 数组习题

2.写一个函数&#xff0c;返回一个整数数组的平均值 package com.fxm.day05.test; public class Day05test{public static void main(String[] args){int[] a1 {2,9,5,7,4};int n average(a1);System.out.println(n);}public static int average(int[] a){int sum 0;for(in…

机器学习笔记(1):Introduction

目录 1&#xff09;welcome 2&#xff09;What is Machine Learning 3&#xff09;Supervised Learning 4&#xff09;Unsupervised Learning 1&#xff09;welcome 第一个视频主要介绍了机器学习目前的案例&#xff0c;主要有&#xff1a;数据库挖掘、医疗记录、生物工程…

【POJ - 3352】Road Construction(Tarjan,边双连通分量)

题干&#xff1a; Its almost summer time, and that means that its almost summer construction time! This year, the good people who are in charge of the roads on the tropical island paradise of Remote Island would like to repair and upgrade the various roads…

C++匿名命名空间

当定义一个命名空间时&#xff0c;可以忽略这个命名空间的名称&#xff1a; namespce {char c;int i;double d;}编译器在内部会为这个命名空间生成一个唯一的名字&#xff0c;而且还会为这个匿名的命名空间生成一条using指令。所以上面的代码在效果上等同于&#xff1a;namespa…

机器学习简易入门-附推荐学习资料

目录 &#xff08;1&#xff09;机器学习正规学习路线 &#xff08;2&#xff09;机器学习快速入门 &#xff08;3&#xff09;总结 感谢黄海广博士的分享 原创&#xff1a; 机器学习初学者 机器学习初学者 今天 机器学习如何入门&#xff1f;目前没有明确的答案。本站面向…

python 习题

使用蒙特-卡罗方法计算圆周率近似值 蒙特-卡罗方法是一种通过概率来得到问题近似解的方法。假设又一块边长为2的正方形木板&#xff0c;上面画一个单位圆&#xff0c;然后随意往木板上扔飞镖&#xff0c;落点坐标(x,y)必然在木板上(更多的是落在单位圆内)&#xff0c;如果扔的…

C++11中的std::function

原文地址&#xff1a;http://www.jellythink.com/archives/771 看看这段代码 先来看看下面这两行代码&#xff1a; std::function<void(EventKeyboard::KeyCode, Event*)> onKeyPressed; std::function<void(EventKeyboard::KeyCode, Event*)> onKeyReleased; 这两…

【HDU - 3394】Railway(点双连通分量,Tarjan算法,思维tricks)

题干&#xff1a; There are some locations in a park, and some of them are connected by roads. The park manger needs to build some railways along the roads, and he would like to arrange tourist routes to each circuit. If a railway belongs to more than one …

飞机大战(简易版)

一、游戏分析 飞机大战中的主要“角色”有&#xff1a; 1.英雄 2.敌方飞机 3.英雄发射的子弹 我们需要控制的有&#xff1a; 1.绘制屏幕内的角色 2.控制角色的逻辑&#xff0c;比如&#xff1a;敌方飞机与我方飞机的碰撞检测&#xff0c;我方飞机发射的子弹与敌方飞机之间的碰撞…

在Ubuntu上安装Keras深度学习框架

目录 1&#xff09;安装pip 2&#xff09;安装Python科学套件 3&#xff09;安装TensorFlow 4&#xff09;安装keras 5&#xff09;安装Jupyter Notebook 6&#xff09;运行Keras 本文介绍如何在Ubuntu上安装Keras深度学习框架。 1&#xff09;安装pip 安装pip包&#…

【POJ - 1523】SPF(Tarjan求割点,求分割成的连通块数,模板题,tricks)

题干&#xff1a; Consider the two networks shown below. Assuming that data moves around these networks only between directly connected nodes on a peer-to-peer basis, a failure of a single node, 3, in the network on the left would prevent some of the still…

C++11 FAQ中文版:std::function 和 std::bind

std::function 和 std::bind 标准库函数bind()和function()定义于头文件中&#xff08;该头文件还包括许多其他函数对象&#xff09;&#xff0c;用于处理函数及函数参数。bind()接受一个函数&#xff08;或者函数对象&#xff0c;或者任何你可以通过”(…)”符号调用的事物&am…

Java 习题(面向对象)

1.&#xff08;面向对象基础&#xff09;写一个Worker 类&#xff0c;并创建多个Worker 对象。 为Worker 类添加四个属性&#xff0c; <1>int 类型的id&#xff0c;表示工人的编号&#xff1b; <2>String 类型的name&#xff0c;表示工人的姓名&#xff1b; <3…

机器学习笔记(2):单变量线性回归

目录 1&#xff09;Model representation 2&#xff09;Cost function 3&#xff09;Cost function intuition 1 4&#xff09;Cost function intuition2 5&#xff09;Gradient descent 6&#xff09;Gradient descent intuition 7&#xff09;Gradient descent for li…

指针右左法则----复杂指针解析

其实如果写得出&#xff08;其实不难&#xff09;指针和数组的声明的EBNF的话&#xff0c;那么直接看就可以反应过来了…… 右左法则是一个既著名又常用的方法。不过&#xff0c;右左法则其实并不是C标准里面的内容&#xff0c;它是从C标准的声明规定中归纳出来的方法。C标准的…

【POJ - 3694】Network(对dfn求lca 或 缩点+lca 或 边双连通+并查集)

题干&#xff1a; 网络管理员管理大型网络。该网络由N台计算机和成对计算机之间的M链路组成。任何一对计算机都通过连续的链接直接或间接连接&#xff0c;因此可以在任何两台计算机之间转换数据。管理员发现某些链接对网络至关重要&#xff0c;因为任何一个链接的故障都可能导…

安装VMware tools

点击“虚拟机” 安装VMware tools提取图中文件到“下载” 提取登入root 进入 cd 下载/vmware-tools-distrib 执行 ./vmware-install-pl 输入yes或者点击“enter”出现图中&#xff0c;即为成功安装