public class Test {
public static void main(String[] args) {
int count = 0;
for (int i = 0; i < 100; i++) {
if(i % 10 == 9 ){
System.out.println(i);
count++;
}
if(i / 10 == 9){
System.out.println(i);
count++;
}
}
System.out.println("9出现的次数是"+count);
}
}
//8 1*8 2*4
//20 1*20 2*10 4*5
//2~n-1之间能整除就说明不是素数
import java.util.Scanner;
public class Test{
public static void main(String[] args) {
Scanner scanner =new Scanner(System.in);
int num= scanner.nextInt();
int i = 2;
for (; i <num; i++) {
if(num % i==0){
System.out.println(num+"不是素数");
break;
}
}
//走到这,要么是break走到这,要么是已经遍历完没有进入第一个if语句走到这,那么就说明num是素数
if(num==i){
System.out.println(num+"是素数");
}
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
for (int j = 1; j <num ; j++) {
int i = 2;
for (; i < j; i++) {
if (j % i == 0) {
//System.out.println(j + "不是素数");
break;
}
}
if (j == i) {
System.out.println(j + "是素数");
}
}
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
for (int j = 1; j <=num ; j++) {
int i = 2;
for (; i <= Math.sqrt(j); i++) { //j=3 i=2
if (j % i == 0) {
//System.out.println(j + "不是素数");
break;
}
}
//走到这,要么是break走到这,要么是已经遍历完没有进入第一个if语句走到这,那么就说明num是素数
if (i > Math.sqrt(j)) {
System.out.println(j + "是素数");
}
}
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
int a= scanner.nextInt(); //24
int b= scanner.nextInt(); // 18
int c = a % b ;// c=6
while(c != 0){
a = b; //a=18
b = c; //b=6
c =a % b;
}
System.out.println(b);
}
}
public class Test {
public static void main(String[] args) {
double sum =0;
int flg =1;
for (int i = 1; i <= 100; i++) {
sum += 1.0/i * flg;
flg = -flg;
}
System.out.println(sum);
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
while(in.hasNextInt()){
int a =in.nextInt();
for (int i = 0; i <a ; i++) {
for (int j = 0; j < a; j++) {
if(i==j || (i+j)==a-1){
System.out.print("*");
}else{
System.out.print(" ");
}
}
System.out.println();
}
}
}
}
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int count = 3;
while(count != 0){
System.out.println("请输入你的密码,你还有"+count+"次机会!");
String password=in.nextLine();
if(password.equals("12345")){
System.out.println("登录成功!");
break;
}else{
System.out.println("输入错误");
count--;
}
}
}
}
按住contrl,移动鼠标到库函数上,鼠标变成一个小手后,点击库函数。
出现下面这个页面,但很多代码,难以找到想看的库函数怎么办呢
点击左侧的strcture即可查看目录
最主要的是格式排版问题
打印 i 与 i+1 之间的空格,j和j+1之间的空格
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Scanner in =new Scanner(System.in);
int a= in.nextInt();
for (int i = 1; i <= a; i++) {
for (int j = 1; j <=i ; j++) {
System.out.print(i+ "*"+ j +"=" +i*j+" ");//隔一个空
}
System.out.println();//一行打完了,跳到下一行打印
}
}
}
// 1^3 + 5^3 + 3^3 = 153
public class Test {
public static void main(String[] args) {
for (int i = 0; i < 9999999; i++) {
//先求有多少位数,才能知道是几平方
int count = 0;
int tmp = i;
while( tmp != 0){
count ++;
tmp = tmp / 10;
}
//求每一位的数字
tmp = i;
int sum = 0;
while (tmp!= 0){
//把tmp%10得到Math.pow括号左边的数,再把tmp/10得到下一位%10的数
sum += Math.pow(tmp%10,count);//3 15%10=5
tmp /= 10; //153/10=15 5/10=1
}
//如果此时i==sum,说明符合水仙花数
if(sum == i){
System.out.println(i);
}
}
}
}
public class Test {
public static void main(String[] args) {
int n = 6;
int count = 0;
while(n !=0){
count++;
n = n&(n-1);
}
System.out.println(count);
}
}
修饰符:现阶段直接使用public static 固定搭配
方法体:方法内部要执行的语句
在java当中,方法必须写在类当中
在java当中,方法不能嵌套定义
在java当中,没有方法声明一说
方法的调用是需要开辟内存的,方法调用结束,这块内存就销毁了
练习:
public class Test {
//求某个数的阶层
public static int fac(int n){
int ret = 1;
for (int i = 0; i <=n ; i++) {
ret *= i;
}
return ret;
}
//求阶层的和
public static int facNum(int k){
int sum = 0;
for (int i = 1; i <= k; i++) {
sum += fac(i);//把每个数的阶层加起来
}
return sum;
}
//
public static void main(String[] args) {
System.out.println(facNum(5));
}
}
今日写了超多逻辑控制的题,总算是找回熟悉的感觉了,还有对方法的使用,再好好地看了一遍终于清晰了,这两天得找个时间巩固复习方法这一块内容,趁热打铁。今天又坚持下来,很棒!