自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 365 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 412

原创 《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 232

原创 《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 283

原创 《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 946

原创 VTK安装 win10+VS2017+VTK8.1.2+QT5.12编译安装

一、前言作为一个之前没接触过VS、没学过编译原理、没写过大型程序的三无萌新,在安装编译vtk(visualization toolkit)的过程中走了不少弯路,网上找到的很多教程要么版本太旧,要么不够完整,略过了前期环境搭建,而这一阶段出现的问题很可能对后续的编译安装产生影响,因此写下这篇博客以供和我一样的新手参考。本文要实现的任务是从一台空白的win10电脑开始,最后自己写出一个vtk小程序...

2018-11-24 18:18:21 13135 16

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除