博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
STL练习程序(vector...)
阅读量:6039 次
发布时间:2019-06-20

本文共 486 字,大约阅读时间需要 1 分钟。

#include 
#include
#include
#include
#include
using namespace std; int testscore[] = {
67, 56, 24, 78, 99, 87, 56}; bool pass(int n) {
if (n>=60) return true; else return false; } void main() {
vector
score(testscore,testscore+sizeof(testscore)/sizeof(int)); vector
::iterator it; for (it=score.begin();it!=score.end();it++) { cout<<*it<<""; } cout<

转载地址:http://elrhx.baihongyu.com/

你可能感兴趣的文章
必须用C模拟OS?
查看>>
JavaScript引入
查看>>
ARM9代码分析启动MAIN.C
查看>>
JSON
查看>>
4.3 Verilog练习(2)
查看>>
浅谈html5某些新元素的用途
查看>>
csv文件的操作
查看>>
基本调试命令 - u/ub/uf
查看>>
实现锁的多种方式和锁的高级用法
查看>>
C语言-一个fopen函数中未使用二进制模式(b)引发的血案
查看>>
Codeforces Round #260 (Div. 1) C. Civilization 并查集,直径
查看>>
Objective-C中常用的结构体NSRange,NSPoint,NSSize(CGSize),NSRect
查看>>
关于spark standalone模式下的executor问题
查看>>
TC SRM 664 div2 B BearPlaysDiv2 bfs
查看>>
Retrofit全攻略——基础篇
查看>>
代理模式
查看>>
具体问题具体分析
查看>>
【SqlServer系列】表达式(expression)
查看>>
maven与gradle的对比
查看>>
异常备忘:java.lang.UnsupportedClassVersionError: Bad version number in .class file
查看>>