zoukankan      html  css  js  c++  java
  • java实现第五届蓝桥杯写日志

    写日志
    写日志是程序的常见任务。现在要求在 t1.log, t2.log, t3.log 三个文件间轮流
    写入日志。也就是说第一次写入t1.log,第二次写入t2.log,... 第四次仍然
    写入t1.log,如此反复。
    
    下面的代码模拟了这种轮流写入不同日志文件的逻辑。
    
    public class A
    {
    private static int n = 1;
    
    public static void write(String msg)
    {
    String filename = "t" + n + ".log";
    n = ____________;
    System.out.println("write to file: " + filename + " " + msg);
    }
    }
    
    请填写划线部分缺失的代码。通过浏览器提交答案。
    
    * 输入描述:  无
    
     * 程序输出: 不要填写题面已有的内容,也不要填写任何说明、解释文字。
    
    * 程序头部的注释结束
    
    */
    
    上代码:
    
    public class Main
    {
      private static int n = 1;
      public static void main(String args[]){
        for (int i = 0; i<=100; i++) {
          write(i,"1111");
        }
      }
    
      public static void write(int n, String msg)
      {
        n = n%3+1;
        String filename = "t" + n + ".log";
        System.out.println("write to file: " + filename + " " + msg);
      }
    }
    
  • 相关阅读:
    mongodb 记录
    php保存文件
    调用AngularJS的API
    angular修改数据
    大小写转换
    使用Properties类动态加载配置文件里的内容
    org.apache.commons.cli.Options
    Google guava和Apache commons
    orc格式文件
    shell的awk命令使用
  • 原文地址:https://www.cnblogs.com/a1439775520/p/13077369.html
Copyright © 2011-2022 走看看