我的编程空间,编程开发者的网络收藏夹
学习永远不晚

ACM模式常见输入输出专题(Java版)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

ACM模式常见输入输出专题(Java版)

目录

题号A: A+B(1)

题号B: A+B(2)

题号C: A+B(3)

题号D: A+B4)

题号E: A+B(5)

题号F: A+B(6)

题号G: A+B(7)

题号H: 字符串排序(1)

题号I 字符串排序(2)

题号G: 字符串排序(3)

题目K: 自测本地通过提交为0


题号A: A+B(1)

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

题号B: A+B(2)

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

题号C: A+B(3)

// 方法1import 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();        while(a!=0 && b!=0){            System.out.println(a+b);            a = sc.nextInt();            b = sc.nextInt();        }    }}//方法2import java.util.Scanner;public class Main{    public static void main(String[] args){        Scanner in = new Scanner(System.in);        while(in.hasNextLine()){            int a = in.nextInt();            int b = in.nextInt();            if(a==0&&b==0){                break;            }            System.out.println(a+b);        }    }}

题号D: A+B4)

import java.util.Scanner;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextLine()){            int num = sc.nextInt();            int sum = 0;            for(int i = 0;i

题号E: A+B(5)

import java.util.Scanner;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        int num = sc.nextInt();        while(num-->0){            int a = sc.nextInt();            int sum = 0;            for(int i = 0; i < a; i++){                sum += sc.nextInt();            }            System.out.println(sum);        }    }}

题号F: A+B(6)

import java.util.Scanner;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextInt()){ //或者使用hasNext()            int num = sc.nextInt();            int sum = 0;            while(num-->0){                sum += sc.nextInt();            }            System.out.println(sum);        }    }}

题号G: A+B(7)

import java.util.Scanner;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextLine()){            int sum = 0;            String[] arr = sc.nextLine().split(" ");            for(String str:arr){                sum += Integer.parseInt(str);            }            System.out.println(sum);        }    }}

题号H: 字符串排序(1)

import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        int num = sc.nextInt();        while(sc.hasNextLine()){           String[] str = sc.nextLine().split(" ");            Arrays.sort(str);            for(int i = 0;i < str.length-1; i++){                System.out.print(str[i] + ' ');            }             System.out.print(str[str.length-1]);        }    }}

题号I 字符串排序(2)

//方法1import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextLine()){            String[] str = sc.nextLine().split(" ");            Arrays.sort(str);            print(str);            System.out.println();        }    }    public static void print(String[] str){        for(int i = 0;i < str.length;i++){            String output = (i == (str.length-1)) ? str[i] : str[i]+' ';            System.out.print(output);        }    }}//方法2import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextLine()){            String[] str = sc.nextLine().split(" ");            Arrays.sort(str);            StringBuffer sb = new StringBuffer();            for(String s:str){                sb.append(s).append(" ");            }            System.out.println(sb.substring(0,sb.length()-1)); //去掉最后一个空格}    }}

题号G: 字符串排序(3)

//方法1import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNextLine()){            String[] str = sc.nextLine().split(",");            Arrays.sort(str);            print(str);            System.out.println();        }    }    public static void print(String[] str){        for(int i = 0;i < str.length;i++){            String output = (i == (str.length-1)) ? str[i] : str[i]+',';            System.out.print(output);        }    }}//方法2import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        while(sc.hasNext()){            String[] str = sc.nextLine().split(",");            Arrays.sort(str);            StringBuilder sb = new StringBuilder();                        for(String s:str){                sb.append(s).append(",");            }            System.out.println(sb.deleteCharAt(sb.length()-1).toString());//去掉最后一个分号        }    }}


题目K: 自测本地通过提交为0

 注意:取值范围是(0,2X10^10),最大值会超过Integer的范围。

import java.util.*;public class Main{    public static void main(String[] args){        Scanner sc = new Scanner(System.in);        //注意取值范围,用什么样的容器接数据        while(sc.hasNextLong()){            Long a = sc.nextLong();            Long b = sc.nextLong();            System.out.println(a+b);        }    }}

练习链接:牛客竞赛_ACM/NOI/CSP/CCPC/ICPC算法编程高难度练习赛_牛客竞赛OJ (nowcoder.com)

来源地址:https://blog.csdn.net/qq_41855453/article/details/131542412

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

ACM模式常见输入输出专题(Java版)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

ACM模式输入输出攻略 | C++篇

文章目录 ACM模式输入输出攻略 | C++篇1.核心代码模式与ACM模式2.C++常用的输入输出方法2.1 输入(1)cin(2)getline()(3)getchar() 2.2 输出 3.案例(1)一维数组1.固
2023-08-20

Win8 专业版系统输入密钥后提示处于通知模式的故障原因及解决方法

Win8专业版系统输入密钥之后,就出现提示"Windows处于通知模式",具体如下图所示:故障原因分析:出现这种情况多是安装了零售版,然后采用KMS激活后出现的,问题其实很好解决,只需要找到对应的KMS就可以了。解决方法:1、通过组合快捷键
2022-06-04

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录