洛谷oj題單【入門2】分支結構-入門難度(Java)

来源:https://www.cnblogs.com/XMMAX/archive/2023/02/06/17094314.html
-Advertisement-
Play Games

洛谷oj題單【入門2】分支結構-入門難度(Java) 來源:https://www.luogu.com.cn/training/101#problems P5709 【深基2.習6】Apples Prologue / 蘋果和蟲子 import java.util.Scanner; public cl ...


洛谷oj題單【入門2】分支結構-入門難度(Java)

來源:https://www.luogu.com.cn/training/101#problems

P5709 【深基2.習6】Apples Prologue / 蘋果和蟲子

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int m = sc.nextInt();
        int t = sc.nextInt();
        int s = sc.nextInt();
        if (t == 0)
            System.out.println(0);
        else {
            int apple = (int) Math.ceil(s / t);
            if (m <= apple)
                System.out.println(0);
            else
                if(s % t != 0)
                    System.out.println(m - apple - 1);
                else
                    System.out.println(m - apple);

        }
    }
}

P5710 【深基3.例2】數的性質

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        //兩種都符合
        System.out.print(((x % 2 == 0) && ((x > 4) && (x <= 12))) ? 1 : 0);
        System.out.printf(" ");
        //至少符合一種
        System.out.print(((x % 2 == 0) || ((x > 4) && (x <= 12))) ? 1 : 0);
        System.out.printf(" ");
        //只符合一種
        System.out.print(((x % 2 == 0) ^ ((x > 4) && (x <= 12))) ? 1 : 0);
        System.out.printf(" ");
        //都不符合
        System.out.print(((x % 2 != 0) && ((x <= 4) || (x > 12))) ? 1 : 0);

    }
}

P5711 【深基3.例3】閏年判斷

import java.util.Scanner;

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

P5712[【深基3.例4】Apples

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if(n == 0 || n == 1)
            System.out.println("Today, I ate "+n+" apple.");
        else
            System.out.println("Today, I ate "+n+" apples.");

    }
}


P5713 【深基3.例5】洛谷團隊系統

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if(11 + 3 * n > 5 * n)
            System.out.println("Local");
        else System.out.println("Luogu");

    }
}

P5714 【深基3.例7】肥胖問題

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double m = sc.nextDouble();
        double h = sc.nextDouble();
        double BMI = m / (h * h);
        if (BMI < 18.5)
            System.out.println("Underweight");
        else if (BMI >= 18.5 && BMI < 24)
            System.out.println("Normal");
        else {
            if (BMI - (int) BMI == 0)
                System.out.printf("%2.0f\n", BMI);//用題目中給的m=120/h=1.4計算出整數部分不會超過兩位,所以占位符取2
            else if (BMI * 10 - (int) (BMI * 10) == 0)
                System.out.printf("%3.1f\n", BMI);//2位整數+1位小數點,所以占位符取3,保留小數點後1位,以下類推
            else if (BMI * 100 - (int) (BMI * 100) == 0)
                System.out.printf("%4.2f\n", BMI);
            else if (BMI * 1000 - (int) (BMI * 10000) == 0)
                System.out.printf("%5.3f\n", BMI);
            else
                System.out.printf("%6.4f\n", BMI);
            //用題目中給的m=120/h=1.4計算出整數部分不會超過兩位
            //所以6位有效數字最多就是2位整數+4位小數
            System.out.println("Overweight");
        }
    }
}

P5715 【深基3.例8】三位數排序

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] str = new int[3];
        for (int i = 0; i < 3; i++) {
            str[i] = sc.nextInt();
        }
        int a = str[0], b = str[1], c = str[2];
        Arrays.sort(str);
        for (int i=0;i<3;i++)
        {
            System.out.print(str[i]+" ");
        }
    }
}

P5716 [【深基3.例9】月份天數

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] str = {0,31,28,31,30,31,30,31,31,30,31,30,31};//常規年份天數
        int y = sc.nextInt();//年
        int m = sc.nextInt();//月
        if(y % 4 == 0 && y % 100 != 0 || y % 400 == 0 )//判斷是否為閏年,方便對2月進行判斷
            str[2] = 29;
        System.out.printf("%d",str[m]);//方便輸出

    }
}

P1085 [NOIP2004 普及組] 不高興的津津

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a,b;
        int max = 0,res = 0;//分別為最大值,最終結果
        for (int i = 0; i < 7; i++) {
            a = sc.nextInt();
            b = sc.nextInt();
            if(a + b > 8 && a + b > max){
                max = a + b;
                res = i + 1;//i以0開頭,所以應加1
            }
        }
        System.out.println(res);
    }
}

P1909 [NOIP2016 普及組] 買鉛筆

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(); //數量
        //三組數據
        int a1 = sc.nextInt();
        int a2 = sc.nextInt();
        int b1 = sc.nextInt();
        int b2 = sc.nextInt();
        int c1 = sc.nextInt();
        int c2 = sc.nextInt();
        //計算錢數
        int a = (int) (Math.ceil((double)n/(double)a1) * a2); //第一組
        int b = (int) (Math.ceil((double)n/(double)b1) * b2); //第二組
        int c = (int) (Math.ceil((double)n/(double)c1) * c2); //第三組
        //比較
        int min = a<b?a:b;
        min = min<c?min:c;
        //輸出
        System.out.println(min);
    }
}

P1422 小玉家的電費

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        double sum = 0;
        if(n < 150){
            sum = n * 0.4463;
        }else if(n >= 150 && n < 400){
            sum = 150 * 0.4463 + (n -150) * 0.4663;
        } else if (n >= 401) {
            sum = 150 * 0.4463 + 250 * 0.4663 + (n - 400) * 0.5663;
        }
        System.out.printf("%.1f",sum);


    }
}

P1424 小魚的航程(改進版)

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();//從周x算起
        int n = sc.nextInt();//天數
        int sum = 0;
        for (int i = 0; i < n; i++) {
            //在迴圈中進行星期的判斷
            switch (x){
                case 1:case 2:case 3:case 4:case 5:sum += 250;//工作日接著游泳
                case 6:x++;continue;//周六休息
                case 7:x = 1;continue;//周日重置為周一,並且休息不游泳
            }
            x++;//進入下一天
        }
        System.out.println(sum);
    }
}

P1888 三角函數

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();

        int min = 0,max = 0;
        //求最小邊
        min = a < b ? a : b;
        min = min < c ? min :c;
        //求斜邊
        max = a > b ? a : b;
        max = max > c ? max :c;
        //輾轉相除法求最大公因數
        int n = 0;
        for (int i = 1; i < min; i++) {
            if(max % i == 0 && min % i ==0){
                n = i;
            }
        }

        System.out.println(min/n+"/"+max/n );

    }
}

P1046 [NOIP2005 普及組] 陶陶摘蘋果

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] arr = new int[10];
        for (int i = 0; i < arr.length; i++) {
            arr[i] = sc.nextInt();
        }

        int n = sc.nextInt();//總高度
        int num = 0;//個數

        for (int i = 0; i < arr.length; i++) {
            if(n+30 >= arr[i])
                num++;
        }
        System.out.println(num);
    }
}

P4414 [COCI2006-2007#2] ABC

import java.util.Scanner;
import java.util.Arrays;


public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int[] a = new int[3];
        a[0] = in.nextInt();
        a[1] = in.nextInt();
        a[2] = in.nextInt();

        Arrays.sort(a);//排序
        String str = in.next();
        char ch1 = str.charAt(0);//第一個字母
        char ch2 = str.charAt(1);//第二個字母
        char ch3 = str.charAt(2);//第三個字母
        System.out.println(a[ch1 - 'A'] + " " + a[ch2 - 'A'] + " " + a[ch3 - 'A']);
    }
}

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

-Advertisement-
Play Games
更多相關文章
  • 哈嘍兄弟們,今天咱們來學習一下Python字典修改元素的四種方式。 本文中使用的字典對象: smart_girl = {"name":"yuan wai", "age": 25} 第一種方式:[key] smart_girl["age"] = 35 說明:字典中存在key時為修改value、不存在k ...
  • 一、最終效果 遠程開機app下載: 下載鏈接:https://wwp.lanzoup.com/iDR330ml4l2b 提取碼 : dxcg 註意:使用前請按照2.1的步驟設置電腦“ mac地址:填寫自己的mac地址 主機地址:填寫自己的公網ip,百度搜索ip 映射埠:第二點準備工作裡面配置的映射 ...
  • 背景 REST作為一種現代網路應用非常流行的軟體架構風格,自從Roy Fielding博士在2000年他的博士論文中提出來到現在已經有了20年的歷史。它的簡單易用性,可擴展性,伸縮性受到廣大Web開發者的喜愛。 REST 的 API 配合JSON格式的數據交換,使得前後端分離、數據交互變得非常容易, ...
  • 為了方便操作apk 實現app的自動化點擊 封裝了個adb操作類。基本上的操作都有了, 如果配合好C# 程式和模擬器 基本上什麼樣的操作都可以實現。 using System; using System.Collections; using System.Collections.Generic; u ...
  • 在種草了很多天之後,最近終於在淘寶下單了友善 nanoPi R5S。 選擇友善 nanoPi R5S 有兩點主要理由: 1. 自帶 EMMC 存儲,可以使用 RockChip 提供的 MaskRom 模式直接連線燒系統,不依賴 TF 卡(我覺得 TF 卡太累贅了,買普通的又慢又不穩定,對於我這種新手 ...
  • Docker部署SpringBoot項目 前言: 以前幾次在雲伺服器上部署項目都是手動打包,安裝mysql等環境最後再部署運行,相對比較麻煩而且加上網上各種教程質量層次不齊,如果過程中出錯的話排查問題對於新人來說已經夠喝一壺了。(我自己第一次手動裝mysql8.0就出過問題,最後找不到問題所在只能推 ...
  • Git for Windows 的 Bash 有一個很實用的功能,如果當前目錄處於 Git 倉庫中,那麼命令行中會顯示當前 Git 分支的名稱(見下圖)。 然而原版的 MSYS2 Bash 沒有這個功能(見下圖),不過我們可以自己動手配置出相同的效果。 配置方法 打開 MSYS2 的家目錄,找到 . ...
  • 一:背景 1. 講故事 上一篇寫完 SQLSERVER 的四個事務隔離級別到底怎麼理解? 之後,有朋友留言問什麼時候可以把 snapshot 隔離級別給補上,這篇就來安排,快照隔離級別看起來很魔法,不過在修車之前,得先看下怎麼開車。 二:snapshot 隔離詳解 1. snapshot 之前的困境 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...