当前位置:   article > 正文

C++ //练习 17.13 编写一个整型对象,包含真/假测验的正确答案。使用它来为前两题中的数据结构生成测验成绩。

C++ //练习 17.13 编写一个整型对象,包含真/假测验的正确答案。使用它来为前两题中的数据结构生成测验成绩。

C++ Primer(第5版) 练习 17.13

练习 17.13 编写一个整型对象,包含真/假测验的正确答案。使用它来为前两题中的数据结构生成测验成绩。

环境:Linux Ubuntu(云服务器)
工具:vim

 

代码块:
#include<iostream>
#include<bitset>
using namespace std;

template <size_t N> class exam {
	public:
	exam(): s() {]
	size_t get_size() { return N; }
	void set_solution(size_t n, bool b) { s.set(n, b); }
	bitset<N> get_solution() const { return s; }
	size_t score(const bitset<N> &a);

	private:
	bitset<N> s;
};

template <size_t N> size_t exam<N>::score(const bitset<N> &a){
	size_t ret = 0;
	for(size_t i = 0; i < N; i++){
		if(s[i] == a[i]){
			ret++;
		}
	}
	return ret;
}

int main(){
	exam<100> e;
	e.set_solution(0, 1);
	e.set_solution(99, 1);
	cout<<e.get_solution()<<endl;

	bitset<100> a;
	cout<<e.score(a)<<" correct answers out of "<<e.get_size()<<endl;

	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/1012961
推荐阅读
相关标签
  

闽ICP备14008679号