zoukankan      html  css  js  c++  java
  • n-1位数

    
    

    n-1位数

    时间限制:3000 ms  |  内存限制:65535 KB
    难度:1
    描述

    已知w是一个大于10但不大于1000000的无符号整数,若w是n(n≥2)位的整数,则求出w的后n-1位的数。

    输入
    第一行为M,表示测试数据组数。
    接下来M行,每行包含一个测试数据。
    输出
    输出M行,每行为对应行的n-1位数(忽略前缀0)。如果除了最高位外,其余位都为0,则输出0。
    样例输入
    4
    1023
    5923
    923
    1000
    样例输出
    23
    923
    23
    0
















    import java.util.Scanner; class Main26 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int count = scan.nextInt(); while (count-- > 0) { String str = scan.next(); boolean flag = true; int j = 1; char[] ch = str.toCharArray(); for (int i = 1; i < ch.length; i++) { if (flag && ch[i] == '0') { j++; continue; } System.out.print(ch[i]); flag = false; } if (j == ch.length) { System.out.println("0"); } else { System.out.println(); } } } };
  • 相关阅读:
    Qt 去除控件边框线
    Qt 自定义可编辑 模型视图
    Qt double类型输出问题
    vue实例
    初识vue
    python中的数据类型
    python 列表解析式
    Goland常用快键键 mac pro
    文档对象模型DOM
    正则表达式
  • 原文地址:https://www.cnblogs.com/airycode/p/5489085.html
Copyright © 2011-2022 走看看