学习 C++,关键是要理解概念,而不应过于深究语言的技术细节

学习 C++
学习 C++,关键是要理解概念,而不应过于深究语言的技术细节。

学习程序设计语言的目的是为了成为一个更好的程序员,也就是说,是为了能更有效率地设计和实现新系统,以及维护旧系统。

C++ 支持多种编程风格。您可以使用 Fortran、C、Smalltalk 等任意一种语言的编程风格来编写代码。每种风格都能有效地保证运行时间效率和空间效率。

 #include <iostream>

 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
class Student
{
private:
int num;
int score;
public:
void setdata()
{
cin>>num;
cin>>score;
}
void display()
{
cout <<"num="<<num<<endl;
cout <<"score="<<score<<endl;
};
}; Student stud1,stud2;
int main(int argc, char** argv) { stud1.setdata();
stud2.setdata();
stud1.display();
stud2.display();
return ;
}
上一篇:C语言-回溯例1


下一篇:Connections between cities HDU - 2874(最短路树 lca )