Java.函数-acwing

题目一: n的阶乘

804. n的阶乘 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    private static int fact(int n) {
        int res = 1;
        for(int i = 1; i <= n; i ++) 
            res *= i;
        
        return res;
    }
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        System.out.println(fact(n));
    }
}

题目二:x和y的最大值

805. x和y的最大值 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    private static int max(int x, int y) {
        if(x > y) return x;
        else return y;
    }
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int x = sc.nextInt(), y = sc.nextInt();
        System.out.println(max(x,y));
    }
}

题目三:最大公约数

808. 最大公约数 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    private static int gcd(int a, int b) {
        while(b != 0) {
            int c = a%b;
            a = b; b = c;
        }
        return a;
    }
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt(), b = sc.nextInt();
        
        System.out.println(gcd(a,b));
    }
}

题目四:交换数值

811. 交换数值 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int[] a = {sc.nextInt(), sc.nextInt()};
        swap(a);
        System.out.printf("%d %d\n",a[0],a[1]);
    }
    
    private static void swap(int[] a) {
        int t = a[0]; a[0] = a[1]; a[1] = t;
    }
}

题目五:打印数字

812. 打印数字 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt(), size = sc.nextInt();
        int[] a = new int[n];
        for(int i = 0; i < n; i ++) 
            a[i] = sc.nextInt();
        
        print1D(a,size);
    }
    
    private static void print1D(int[] a, int size) {
        for(int i = 0; i < size; i ++) 
            System.out.printf("%d ",a[i]);
    }
}

题目六:打印矩阵

813. 打印矩阵 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int r = sc.nextInt(), c = sc.nextInt();
        int[][] a = new int[r][c];
        for(int i = 0; i < r; i ++) 
            for(int j = 0; j < c; j ++) 
                a[i][j] = sc.nextInt();
        
        print2D(a,r,c);
    }
    
    private static void print2D(int[][] a, int r, int c) {
        for(int i = 0; i < r; i ++) {
            for(int j = 0; j < c; j ++) {
                System.out.printf("%d ",a[i][j]);
            }
            System.out.println("");
        }
    }
}

题目七:递归求阶乘

819. 递归求阶乘 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        System.out.println(fact(n));
    }
    
    private static int fact(int n) {
        if(n == 1) return 1;
        return fact(n-1)*n;
    }
}

题目八:递归求斐波那契数列

820. 递归求斐波那契数列 - AcWing题库

代码

java 复制代码
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        System.out.println(solve(n));
    }
    
    private static int solve(int n) {
        if(n == 1 || n == 2) return 1;
        return solve(n-1) + solve(n-2);
    }
}
相关推荐
我是苏苏44 分钟前
C#基础:Winform桌面开发中窗体之间的数据传递
开发语言·c#
一只叫煤球的猫1 小时前
【🤣离谱整活】我写了一篇程序员掉进 Java 异世界的短篇小说
java·后端·程序员
斐波娜娜1 小时前
Maven详解
java·开发语言·maven
Bug退退退1231 小时前
RabbitMQ 高级特性之事务
java·分布式·spring·rabbitmq
程序员秘密基地1 小时前
基于html,css,vue,vscode,idea,,java,springboot,mysql数据库,在线旅游,景点管理系统
java·spring boot·mysql·spring·web3
皮皮林5511 小时前
自从用了CheckStyle插件,代码写的越来越规范了....
java
小码氓1 小时前
Java填充Word模板
java·开发语言·spring·word
会飞的天明1 小时前
Java 导出word 实现饼状图导出--可编辑数据
java·word
Muxiyale2 小时前
使用spring发送邮件,部署ECS服务器
java·服务器·spring
暮鹤筠2 小时前
[C语言初阶]操作符
c语言·开发语言