zoukankan      html  css  js  c++  java
  • ACM

    PS: 开始ACM的受虐!
    site:http://acm.acmcoder.com/listproblem.php

    【如果觉得我的笔记写的好,您可以小额赞助我:支付宝 15202166392】


    一、1000
    import java.util.Scanner;

    public class Main {
        public static void main(String args[]) {
            Scanner cin = new Scanner(System.in);
            int a, b;
            while (cin.hasNextInt()) {
                a = cin.nextInt();
                b = cin.nextInt();
                System.out.println(a + b);
            }
        }
    }

    二、1001
    import java.util.Scanner;

    public class Main {
        public static void main(String args[]) {
            Scanner cin = new Scanner(System.in);
            int n;
            long sum;
            while (cin.hasNext()) {
                n = cin.nextInt();
                sum = n + 1;
                sum = sum * n / 2;
                System.out.println(sum);
                System.out.println();
            }
        }
    }

    三、1002
    import java.math.BigInteger;
    import java.util.Scanner;

    public class Main {
        public static void main(String args[]) {
            Scanner sc = new Scanner(System.in);
            int i = sc.nextInt();
            for (int j = 1; j <= i; j++) {
                BigInteger a = new BigInteger(sc.next());
                BigInteger b = new BigInteger(sc.next());
                System.out.println("Case " + j + ":");
                System.out.println(a.toString() + " + " + b.toString() + " = "
                        + a.add(b));
                if (j != i)
                    System.out.println();
            }
        }
    }

  • 相关阅读:
    创建型模式(四) 单例模式
    创建型模式(三) 原型模式
    创建型模式(二) 建造者模式
    创建型模式(一) 简单工厂模式、工厂模式与抽象工厂模式
    Django15-分页功能
    Django14-Ajax删除按钮动态效果
    网络day04-配置备份、清除、密码恢复、IOS更新
    网络day03-NTP配置和SMTP配置
    网络day02-设备配置远程登录
    HTML注释
  • 原文地址:https://www.cnblogs.com/xavierjzhang/p/4501433.html
Copyright © 2011-2022 走看看