自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(17)
  • 资源 (2)
  • 收藏
  • 关注

转载 <转

对本科生的要求其实很简单,认真学过专业课就行。所谓认真学过专业课的程度是:熟练掌握数门语言熟练掌握一个平台熟练掌握、理解算法和数据结构掌握编译原理、操作系统、网络、图形、数据库等专业课程知识认可《软件工程》能达到这个程度的本科生,可以随便秒大部分985的水硕以我为例,我大二开始学编程,到找工作时只学了两年,达到的水平很低微:不够熟练地掌握了c和pytho

2014-10-08 10:27:52 531 1

原创 week_12_homework

3. 建立一个链表,每一个学号包括学号、姓名、性别、成绩,输入一个成绩,如果在链表中节点成绩等入输入的成绩,则将其删除。

2014-05-26 23:13:32 835 2

原创 Primer_nine

first:main.cpp#include #include "golf.h"using namespace std;const int Mens=5;int main(){ golf team[Mens]; cout<<"Enter up to "<<Mens<<" golf team members:\n"; int i;

2014-05-16 22:04:39 646 1

原创 课程综合设计题最终版

1、学校学生成绩管理假设一个学校成绩管理要管理的学生信息包括:班级、学号、姓名、学期、每门课程的成绩(每学期的课程门数是不一样的) ,对学生的成绩信息进行管理。要求实现如下的功能:实现:学生信息的录入;修改;删除和查询,按学期、学号、成绩不及格等查询。⑴ 输入学生的成绩信息,包含学号、姓名、性别等基本信息和各课成绩⑵ 显示全部学生各科成绩信息;⑶ 对

2014-05-14 21:56:54 1046 5

原创 week_9_homework

一:习题1.

2014-05-01 11:13:48 710 2

原创 关于函数模板以及具体化

#include #include using namespace std; template T maxn(T arr[],int n); template <> const char*maxn(const char *arr[],int n); int main() { int arr1[6]={1,2,3,4,5,6}; cout<<m

2014-04-25 23:41:09 634 1

原创 Primer_eight

#include using namespace std;void show(const char *arr,int n=0);int main(){ char *p1="why me?"; show(p1); cout<<endl; for(int i=0;i<3;i++) { cout<<"i = "<<i<<endl;

2014-04-25 23:37:25 659 1

原创 Primer_seven

#include using namespace std;double average(double num_1,double num_2);int main(){ double num_1,num_2,ave; do { cout << "请输入第一个数:"<<endl; cin >>num_1; cout <<"

2014-04-19 18:16:05 625 1

原创 week_7_homework

第三:

2014-04-14 22:36:59 728 1

原创 Primer_Six

#include #include using namespace std;int main(){ char ch ; cin.get(ch); while (ch!='@') { if(!isdigit(ch)) { if(islower(ch)) ch=touppe

2014-04-09 19:21:23 679 2

原创 week_5_homework

第一:例题 1. # include using namespace std;int main(){ int a[10]; int i; for(i=0;i<10;i++) a[i]=i*2+2; for(i=0;i<10;i++) { cout<<a[i]<<'\t'; if((i+1)%5==0) cou

2014-04-04 19:50:53 790 1

原创 week_4_homework

第一:5:求自然对数#include using namespace std;int main(){ int i=0; double value=1,fac=1; while (fac>=10e-6) { i++; fac=fac/i; value+=fac; } cout

2014-03-25 00:05:27 1155 1

原创 Primer_Five

#include using namespace std;int main(){ int num_1,num_2,i,add=0; cout << "Please enter the first numble : "<<endl; cin >> num_1; cout << "Please enter a number greater than the f

2014-03-24 20:22:40 545

原创 Primer_Four

#include using namespace std;int main (){ const int Size=10; char f_name[Size],l_name[Size],grade[Size], age[Size]; cout << "What is your first name?"<<endl; cin.getline(f_name,S

2014-03-21 09:17:21 484

原创 week_3_homework

二:计算三角形的面积以及周长#include using namespace std;int main(){ float side_1, side_2,side_3; cout << "Please enter the first side length:"; cin >> side_1; cout << endl; cout << "Plea

2014-03-18 23:13:20 828 2

原创 primer three_Practice

One:#include using namespace std;int main(){ int height_in,height_fo;//定义两个标识符分别存放英寸和英尺的身高 const int IN_TO_FOOT=12;//定义一个英尺与英寸间转换因子 cout << "Please enter your height in inches:";

2014-03-13 22:22:00 671 1

原创 week_2_homework

//This is an introductory program my personal information#include using namespace std;int main(){ cout << " 姓名:蔡志迈\n"; cout << " 班级:自动化1122\n"; cout << " 学号:201211632201\n"; re

2014-03-13 00:03:28 733 2

Head first C 英文扫描版

很好的一本书,就是现在没好的译文版。入门的话比The c program language要好。

2014-03-05

C HOW TO PROGRAM

一本好书,C HOW TO PROGRAM,原版英文版。

2013-03-31

空空如也

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

TA关注的人

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