public class computeWxxFileNum{public static void main(String[] args) throws IOException {//读文件File sourceFile = new File("e:\\55-tmp\\xxx.log");FileReader in = new FileReader(sourceFile); LineNumber
public class computeFileNum{public static void main(String[] args) throws IOException {File sourceFile = new File("e:\\55-tmp\\xxx.log"); FileReader in = new FileReader(sourceFile); LineNumberReader
Every day a Leetcode 题目来源:3258. 统计满足 K 约束的子字符串数量 I 解法1:暴力 暴力枚举每一个子字符串,看是否满足 k 约束。 代码: /** @lc app=leetcode.cn id=3258 lang=cpp** [3258] 统计满足 K 约束的子字符串数量 I*/// @lc code=startclass Solution{publ
话不多说,直接举例咋用。 先知道一下常用语法: sum(case 属性名 when 属性值1 then 1 else 0 end),意思就是某个属性下为属性值1就加1个数量,否则就作0统计。 看我的表players的长相: 1、统计男生和女生的数量 SELECT sum(CASE gender WHEN 'man' THEN 1 ELSE 0 END) as man_numbers, su
Let the Balloon Rise Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) Total Submission(s) : 15 Accepted Submission(s) : 6 Font: Times New Roman | Verdana | Georgi
水果店运来西瓜和白兰瓜的个数比是7:5。如果每天卖出白兰瓜40个,西瓜50个,若干天后卖完白兰瓜时,西瓜还剩36个。那么,水果店运来的西瓜有()个。 A 240 B 360 C 476 D 336【正确答案】 方法1:设水果店运来的西瓜为7x个,则运来的白兰瓜为5x个,根据二者的售卖天数相等可得:(7x-36)÷50=5x÷40,解得x=48,则西瓜的个数为7x=7×48=336个。 方法2:水