首页 > TAG信息列表 > couter

《算法笔记》4.2小节——算法初步->哈希 问题 B: 分组统计

问题 B: 分组统计 时间限制 : 1.000 sec 内存限制 : 32 MB 题目描述 先输入一组数,然后输入其分组,按照分组统计出现次数并输出,参见样例。 输入 输入第一行表示样例数m,对于每个样例,第一行为数的个数n,接下来两行分别有n个数,第一行有n个数,第二行的n个数分别对应上一行每个数的分

day04

流程控制 用户交互Scanner 构造: Scanner scanner = new Scanner(System.in); 方法: next()与nextLine()区别:遇到空格是否断 nextInt(); nextFloat(); close(); 顺序结构 依次运行 选择结构 if(布尔表达式){ }else if{ }else{ } switch(expression){ case

第十一届蓝桥杯大赛软件类省赛第二场C/C++大学B组

试题 A: 门牌制作 本题总分:5 分 代码: #include<iostream> using namespace std; int main() { int couter=0; for(int i=1;i<=2020;i++) { int a=i/1000; int b=i/100%10; int c=i/10%10; int d=i%10; if(a==2) couter++; if(b==2) couter++; if(c==2)