“藍橋杯”練習系統練習題答案(自己做的)

来源:https://www.cnblogs.com/lyjun/archive/2019/03/23/10585333.html
-Advertisement-
Play Games

題目來源: 藍橋杯練習系統(寫博客日期為2019.3.23,所以可能讀者看到的時候,更新了新的題) 這裡只提供每道題的我的解題代碼,僅供參考。這裡不會寫解題思路和詳解,如果有需要的話,請留言給我,我會在留言區回覆。vip題目來源dotcpp(順序跟練習系統一樣,只不過我沒有vip,所以在dotcpp ...


題目來源:

藍橋杯練習系統(寫博客日期為2019.3.23,所以可能讀者看到的時候,更新了新的題)

這裡只提供每道題的我的解題代碼,僅供參考。這裡不會寫解題思路和詳解,如果有需要的話,請留言給我,我會在留言區回覆。vip題目來源dotcpp(順序跟練習系統一樣,只不過我沒有vip,所以在dotcpp網站中看題並解題)。

試題集截圖: 

 

入門訓練:

1-1  BEGIN-1  A+B問題

import java.util.*;
public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();
        int b = in.nextInt();
        System.out.println(a+b);
    }
}

1-2  BEGIN-2  序列求和

import java.util.*;
public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        double n = in.nextInt();
        double s = (1 + n) / 2;
        double t = s * n;
        System.out.println((long)t);
    }
}

1-3  BEGIN-3  圓的面積

import java.util.*;
public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        final double PI = 3.14159265358979323;
        double a = in.nextInt();
        double c = a*a*PI;
        System.out.printf("%.7f", c);
    }
}

1-4  BEGIN-4  Fibonacci數列

public class Main {
    public static void main(String[] ars){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        if(n < 3){
            System.out.println(1);
        }else {
            int[] a = new int[n + 1];
            a[1] = 1 % 10007;
            a[2] = 1 % 10007;
            for (int i = 3; i <= n; i++) {
                a[i] = (a[i - 1] + a[i - 2]) % 10007;
            }
            System.out.println(a[n]);
        }
    }
}

基礎練習:

2-1  BASIC-1  閏年判斷

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int y = in.nextInt();
        if((y%4 == 0 && y%100 != 0) || (y%400 == 0)){
            System.out.println("yes");
        }else {
            System.out.println("no");
        }
    }
}

2-2  BASIC-2  01字串

public class Main {
    public static void main(String[] args){
        for(int i=0; i<32; i++) {
            String str = Integer.toBinaryString(i);
            System.out.printf("%05d", Integer.valueOf(str));
            System.out.println();
        }
    }
}

2-3  BASIC-3  字母圖形

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int m = in.nextInt();
        String s = "BCDEFGHIJKLMNOPQRSTUVWXYZ";
        StringBuilder str = new StringBuilder(s);
        str = str.reverse();
        str.append("A");
        str.append(s);
        int a = str.indexOf("A");
        int b = a+m;
        for(int i=0; i<n; i++){
            System.out.println(str.substring(a, b));
            a--;
            b--;
        }
    }
}

2-4  BASIC-4  數列特征

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] s = new int[n];
        for(int i=0; i<n; i++){
            s[i] = in.nextInt();
        }
        int max = s[0];
        int min = s[0];
        int sum = 0;
        for(int j=0; j<s.length; j++){
            if(s[j] > max){
                max = s[j];
            }
            if(s[j] < min){
                min = s[j];
            }
            sum = sum + s[j];
        }
        System.out.println(max);
        System.out.println(min);
        System.out.println(sum);
    }
}

2-5  BASIC-5  查找整數

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] s = new int[n];
        for(int i=0; i<n; i++){
            s[i] = in.nextInt();
        }
        int a = in.nextInt();
        in.close();
        int count = 0;
        for(int j=0; j<s.length; j++){
            if(s[j] == a){
                count = j+1;
                break;
            }
        }
        if(count == 0){
            System.out.println(-1);
        }else {
            System.out.println(count);
        }
    }
}

2-6  BASIC-6  楊輝三角形

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[][] a = new int[n][n];
        if(n == 1){
            System.out.println(1);
        }else{
            a[0][0] = 1;
            for(int i=1; i<n; i++){
                a[i][0] = 1;
                a[i][i] = 1;
                if(n != 2){
                    for(int j=1; j<=i-1; j++){
                        a[i][j] = a[i-1][j-1] + a[i-1][j];
                    }
                }
            }
        }

        // 顯示
        for(int i=0; i<n; i++){
            for(int j=0; j<=i; j++){
                System.out.print(a[i][j]);
                if(i!=j){
                    System.out.print(' ');
                }
            }
            System.out.println();
        }
    }
}

2-7  BASIC-7  特殊的數字

public class Main {
    public static void main(String[] args){
        for(int dd=100; dd<=999; dd++){
            String data = dd + "";
            char d0 = data.charAt(0);
            char d1 = data.charAt(1);
            char d2 = data.charAt(2);
            double sum1 = Math.pow((d0-'0'), 3) + Math.pow((d1-'0'), 3) + Math.pow((d2-'0'), 3);
            if((int)sum1 == dd){
                System.out.println(dd);
            }
        }
    }
}

2-8  BASIC-8  迴文數

public class Main {
    public static void main(String[] args){
        StringBuilder a = new StringBuilder();
        for(int i=1; i<=9; i++){
            for(int j=0; j<=9; j++){
                a.append(i);
                a.append(j);
                a.append(j);
                a.append(i);
                System.out.println(a.toString());
                a.delete(0, a.length());
            }
        }
    }
}

2-9  BASIC-9  特殊迴文數 

2-9-1  解法一

import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        for(int i=10000; i<=999999; i++){
            String data = "" + i;
            int sum = 0;
            for(int k=0; k<data.length(); k++){
                sum = sum + (data.charAt(k)-'0');
            }
            int len = data.length();
            int count = len/2;
            // 計算相等的個數,如果是2,3則滿足
            StringBuilder flag = new StringBuilder();
            for(int j=0; j<count; j++){
                if(data.charAt(j) == data.charAt(len-j-1)){
                    flag.append(1);
                }else{
                    flag.append(0);
                }
            }
            if((flag.toString().equals("111") || flag.toString().equals("11")) && (n == sum)){
                System.out.println(i);
            }
            else{
                continue;
            }
        }
    }
}

2-9-2  解法二

import java.util.Scanner;

public class Main {
    public static void f5(int n){
        /* 五位數處理代碼 */
        StringBuilder anser1 = new StringBuilder();
        // 測試第1位的值
        for(int i=1; i<=9; i++){
            // 測試第2位的值
            for(int j=0; j<=9; j++){
                // 計算第3位的值
                int third_number = n - 2*i - 2*j;
                if(third_number>=0 && third_number<=9){
                    anser1.append(i);
                    anser1.append(j);
                    anser1.append(third_number);
                    anser1.append(j);
                    anser1.append(i);
                    System.out.println(anser1);
                    anser1.delete(0, anser1.length());
                }else{
                    continue;
                }
            }
        }
    }

    public static void f6(int n){
        /* 六位數處理代碼 */
        StringBuilder anser2 = new StringBuilder();
        // temp: 前三位相加的值
        int temp = n/2;
        // 測試第1位的值
        for(int i=1; i<=9; i++){
            // 測試第2位的值
            for(int j=0; j<=9; j++){
                // 計算第3位的值
                int third_number2 = temp-i-j;
                if(third_number2>=0 && third_number2<=9){
                    anser2.append(i);
                    anser2.append(j);
                    anser2.append(third_number2);
                    anser2.append(third_number2);
                    anser2.append(j);
                    anser2.append(i);
                    System.out.println(anser2);
                    anser2.delete(0, anser2.length());
                }else{
                    continue;
                }
            }
        }
    }

    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        f5(n);
        // 偶數才可能是6位
        if(n%2==0){
            f6(n);
        }
    }
}

2-10  BASIC-10  十進位轉十六進位

import java.util.Scanner;

public class Main {
    public static char f(long a){
        char temp = ' ';
        if(a<=9){
            temp = (char)(a+48);
        }else {
            switch ((int) a) {
                case 10:
                    temp = 'A';
                    break;
                case 11:
                    temp = 'B';
                    break;
                case 12:
                    temp = 'C';
                    break;
                case 13:
                    temp = 'D';
                    break;
                case 14:
                    temp = 'E';
                    break;
                case 15:
                    temp = 'F';
                    break;
            }
        }
//        System.out.println(temp);
        return temp;
    }

    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        long a = in.nextLong();
        StringBuilder ss = new StringBuilder();
        if(a == 0){
            ss.append(0);
        }else {
            while (a != 0) {
                long number = a % 16;
                char s = f(number);
                ss.append(s);
                a = a / 16;
            }
        }
        System.out.println(ss.reverse().toString());
    }
}

2-11  BASIC-11  十六進位轉十進位

import java.util.*;

public class Main {

    public static int f(char a){
        int x=0;
        if(a>='0' && a<='9'){
            x = a-'0';
        }else{
            switch (a){
                case 'A': x = 10;break;
                case 'B': x = 11;break;
                case 'C': x = 12;break;
                case 'D': x = 13;break;
                case 'E': x = 14;break;
                case 'F': x = 15;break;
                default:break;
            }
        }
        return x;
    }

    public static void h(String str){
        int len = str.length();
        double x = 0;
        for(int i=0; i<len; i++){
            int value = f(str.charAt(i));
            x = value*Math.pow(16, len-1-i) + x;
        }
        System.out.println((long)x);
    }

    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        String a = in.next();
        in.close();
        h(a);
    }
}

2-12  BASIC-12  十六進位轉八進位

import java.util.Scanner;

public class Main {
    public static String f(String s){
        int len = s.length();
        StringBuilder str = new StringBuilder();
        for(int i=0; i<len; i++){
            switch (s.charAt(i)){
                case '0': str.append("0000");break;
                case '1': str.append("0001");break;
                case '2': str.append("0010");break;
                case '3': str.append("0011");break;
                case '4': str.append("0100");break;
                case '5': str.append("0101");break;
                case '6': str.append("0110");break;
                case '7': str.append("

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • C++ 標準:維基百科 C 標準:維基百科 【K&R C】 1978 年,Dennis Ritchie 和 Brian Kernighan 合作推出了《The C Programming Language》的第一版(按照慣例,經典著作一定有簡稱,該著作簡稱為 K&R),書末的參考指南 (Refere ...
  • 一. 系統和JDK版本 系統:Windows10 JDK版本:1.8 二. 配置步驟 1. 右鍵單擊“我的電腦” >> 屬性 >> 高級系統設置 2. 環境變數 3. 系統變數 >>新建 4.新建變數名“JAVA_HOME”,變數值為JDK的安裝路徑 5. 編輯Path環境變數,添加“%JAVA_H ...
  • 背景:人生不可以後悔,但它卻可以轉彎。不知不覺到新的公司上班已經一個多星期了,然而之前面試了好幾家公司都沒有好好總結下;新公司給我的總體印象還不錯,是一家非外包的創業型企業,就是公司是做大數據項目的,之前我是搞Java開發的,然後現在自己hadoop不瞭解、Linux不熟悉、測試用例也沒寫過等,搞得 ...
  • "題目鏈接" 題解: 這個題可以用廣搜來解決,從農夫到牛的走法每次都有三種選擇,定義一個隊列,把農夫的節點加進隊列,然後以這三種走法找牛,隊列先進先出,按順序直到找到牛的位置。 代碼: c++ include include include include using namespace std; ...
  • 很簡單的一款PHP+Ajax+plupload無刷新上傳頭像代碼,相容性很好,可以直接拿來用。你可以自定義各種類型的文件。本實例中只能上傳"jpg", "png", "gif", "jpeg"等圖片文件 引入jQuery庫和plupload上傳組件 plupload單圖片上傳配置 本實例下載:htt ...
  • Python主要是依靠眾多的第三方庫來增強它的數據處理能力的。常用的是Numpy庫,Scipy庫、Matplotlib庫、Pandas庫、Scikit-Learn庫等。 常規版本的python需要在安裝完成後另外下載相應的第三方庫來安裝庫文件。而若安裝的是Anaconda版本的Python,則不需要 ...
  • 一些設置setting.py 運行項目內應用測試模塊tests.py,報錯 處理如下: ...
  • 作為一款現象級游戲,王者榮耀,想必大家都玩過或聽過,游戲里中各式各樣的英雄,每款皮膚都非常精美,用做電腦壁紙再合適不過了。本篇就來教大家如何使用Python來爬取這些精美的英雄皮膚。 關註公眾號「**Python專欄**」,後臺回覆「**zsxq04**」,獲取本文全套源碼! ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...