- 博客(6)
- 收藏
- 关注
原创 《C++ Primer Plus 第六版》编程练习参考答案(第六章)
第六章第一题:#include <iostream>#include <cctype>using namespace std;int main(){ char ch; cout<<"Please enter some alpha or numbers, end with @: "<<endl; while(cin>&g...
2018-12-11 19:53:41 387 1
原创 《C++ Primer Plus 第六版》编程练习参考答案(第五章)
第五章第一题:#include <iostream>using namespace std;int main(){ int a=0; int b=0; int SUM=0; cout<<"Please enter two numbers a b(a<b):\n"; cout<<"a = "; cin>>a;
2018-12-08 15:51:39 437
原创 《C++ Primer Plus 第六版》编程练习参考答案(第四章)
第四章第一题:#include <iostream>#include <string>using namespace std;int main(){ struct info { string FirstName; string LastName; char LetterGrade; int age; }; info stu {...
2018-12-07 16:08:02 253
原创 《C++ Primer Plus 第六版》编程练习参考答案(第三章)
第三章第一题:#include <iostream>using namespace std;const int TransFactor=12;int main(){ int height=0; int inch=0; int foot=0; cout<<"Enter the height of you in inch: ___\b...
2018-12-06 18:19:54 299
原创 《C++ Primer Plus 第六版》编程练习参考答案(第二章)
第二章第一题:#include <iostream>using namespace std;int main(){ cout<<"Horace.Kem"<<" Ganjiang East Road NO.333, Suzhou, Jiangsu, China";}第二题:#include <iostream>usin...
2018-12-06 18:15:53 999
原创 VTK安装 win10+VS2017+VTK8.1.2+QT5.12编译安装
一、前言作为一个之前没接触过VS、没学过编译原理、没写过大型程序的三无萌新,在安装编译vtk(visualization toolkit)的过程中走了不少弯路,网上找到的很多教程要么版本太旧,要么不够完整,略过了前期环境搭建,而这一阶段出现的问题很可能对后续的编译安装产生影响,因此写下这篇博客以供和我一样的新手参考。本文要实现的任务是从一台空白的win10电脑开始,最后自己写出一个vtk小程序...
2018-11-24 18:18:21 13268 16
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人