关注公众号“中科天齐软件安全中心”(id:woocoom),一起涨知识! 该栏目为中科天齐全新规划的悟空云课堂,每周五下午18:00准时上线,旨在科普软件安全相关知识,助力企业有效防范软件安全漏洞,提升网络安全防护能力。 【悟空云课堂】第十六期:使用不安全的随机值漏洞(CWE-330: Use of Insufficiently Random Values) 什么是使用不安全的随
A.Counting Passes(暴力) 题意: 给定 n n n个学生的分数,以及及格分 x x x ,问多少人及格了。 分析: 暴力枚举,依次判断每个学生的分数即可。 代码: #include <bits/stdc++.h>using namespace std;int main(){int n, l;cin >> n >> l;int ans = 0;while (n--)