|
|
发表于 8-2-2010 11:56 PM
|
显示全部楼层
有比较了解了。。。
请问// 是不是给我自己看而已
而给电脑的指令只是# ?
-SaD- 发表于 7-2-2010 12:46 AM 
你好,我本身也是IT生.
不过是Foundation Business I.T,Major in I.T..
学院也教c++ liao..
虽然我的c++不算很厉害(之前也是读到蛮辛苦下,因为里只有两个学生==.不是来这边问,就是问老师,不是问老师,就上网找..)
但总算给我passed. Basic的还是可以给点意见的.(因为theory part还蛮不错下,因为很厉害背.. )
因为某原因我没continue我的degree.
担心会忘掉programming..偶尔也会来看看的..
希望能交流下,认识下多点I.T朋友.
//,是给你自己看的comment,short explanation. |
|
|
|
|
|
|
|
|
|
|
发表于 9-2-2010 08:26 PM
|
显示全部楼层
麻烦你了。。。PM你了我的email,谢谢哦
没有朋友会C++ =.=
-SaD- 发表于 8-2-2010 11:42 PM 
send给你了,希望对你有用。 当你开project时,里面可能有不同的file(.cpp),记得只compile你用要的东西,其他的file就用// 或 */ [code] /* 来关掉。 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 9-2-2010 11:51 PM
|
显示全部楼层
你好,我本身也是IT生.
不过是Foundation Business I.T,Major in I.T..
学院也教c++ liao..
虽然我的 ...
emotion 发表于 8-2-2010 11:56 PM 
也许我会比较笨,请多多指教了。。。 |
|
|
|
|
|
|
|
|
|
|
发表于 9-2-2010 11:57 PM
|
显示全部楼层
也许我会比较笨,请多多指教了。。。
-SaD- 发表于 9-2-2010 11:51 PM 
你好,哈哈..别那樣說自己啦~..希望我也能幫到你..怕有點忘記了.. |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 10-2-2010 12:01 AM
|
显示全部楼层
send给你了,希望对你有用。当你开project时,里面可能有不同的file(.cpp),记得只compile你 ...
monster5105 发表于 9-2-2010 08:26 PM 
想请问visual studio->new project我应该选那里一个?怎么我按了好几个都没得打coding的?、
 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 10-2-2010 12:01 AM
|
显示全部楼层
send给你了,希望对你有用。当你开project时,里面可能有不同的file(.cpp),记得只compile你 ...
monster5105 发表于 9-2-2010 08:26 PM 
谢谢你的slide哦。。。 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 10-2-2010 12:02 AM
|
显示全部楼层
你好,哈哈..别那樣說自己啦~..希望我也能幫到你..怕有點忘記了..
emotion 发表于 9-2-2010 11:57 PM 
在研究着怎么用visual studio @@ |
|
|
|
|
|
|
|
|
|
|
发表于 10-2-2010 10:55 AM
|
显示全部楼层
有GUI的...MFC APPLICATION...
C++通常是WIN32 CONSOLE APPLICATION... |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 10-2-2010 10:14 PM
|
显示全部楼层
有GUI的...MFC APPLICATION...
C++通常是WIN32 CONSOLE APPLICATION...
aquamax 发表于 10-2-2010 10:55 AM 
可以了。。。谢谢你。。。
我copy and paste this coding了
// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
请问按什么显示效果? |
|
|
|
|
|
|
|
|
|
|
发表于 11-2-2010 12:30 AM
|
显示全部楼层
可以了。。。谢谢你。。。
我copy and paste this coding了
// my fi ...
-SaD- 发表于 10-2-2010 10:14 PM 
Ctrl + F5 或 F5 |
|
|
|
|
|
|
|
|
|
|
发表于 11-2-2010 10:12 AM
|
显示全部楼层
|
'Compile/Build'然后'Run'.... |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 12-2-2010 10:23 PM
|
显示全部楼层
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 14-2-2010 08:56 PM
|
显示全部楼层
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 14-2-2010 08:58 PM
|
显示全部楼层
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 14-2-2010 09:12 PM
|
显示全部楼层
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 13-5-2010 10:22 PM
|
显示全部楼层
请问下我是不是不应该这个打? 请问哪里有错??
#include<iostream>
#include<string>
#include<sstream>
using namespace std;
class Member //record stuff
{
private:
int ID;
string Name;
int IC;
int Gender;
int Age;
int Designation;
string DateOfBirth;
int MaritalStatus;
string Department;
string JoinedDate;
string Nationality;
string Religion;
public:
void SetID(int);
void SetName(string);
void SetIC(int);
void SetGender(int);
void SetAge(int);
void SetDesignation(int);
string SetDateOfBirth(string);
void SetMaritalStatus(int);
void SetDepartment(string);
void SetJoinedDate(string);
void SetNationality(string);
void SetReligion(string);
int GetID();
string GetName();
int GetIC();
int GetGender();
int GetAge();
int GetDesignation();
string GetDateOfBirth();
int GetMaritalStatus();
string GetDepartment();
string GetJoinedDate();
string GetNationality;
string GetReligion();
string to string();
};
int Member::GetID()
{
return ID;
}
string Member::GetName()
{
return Name;
}
int Member::GetIC()
{
return IC;
}
int Member::GetGender()
{
return Gender;
}
int Member::GetAge()
{
return Age;
}
int Member::GetDesignation()
{
return Designation;
}
string Member::GetDateOfBirth()
{
return DateOfBirth;
}
int Member::GetMaritalStatus()
{
return MaritalStatus;
}
string Member::GetDepartment()
{
return Department;
}
string Member::GetJoinedDate()
{
return JoinedDate;
}
string Member::GetNationality()
{
return Nationality;
}
string Member::GetReligion()
{
return Religion;
}
void Member::SetID(int ID)
{
this -> ID = (ID >= 0 && ID <= 100 ? ID : -1);
if (this -> ID == -1)
cout << "The ID should not be" << ID;
}
void Member::SetName(string Name)
{
this -> Name = Name;
}
void Member::SetIC(int IC)
{
this -> IC = IC;
}
void Member::SetGender(int Gender)
{
this -> Gender = (Gender >= 1 && Gender <= 2 ? Gender : -1);
if (this -> Gender == -1)
cout << " The Gender should not be" << Gender;
}
void Member::SetAge(int Age)
{
this -> Age =(Age >= 18 && Age <= 50 ? Age : -1);
if (this -> Age == -1)
cout << "The Age should not be" << Age;
}
void Member::SetDesignation(int Designation)
{
this -> Designation =(Designation >= 1 && Designation <= 6 ? Designation : -1)
if (this -> Designation == -1)
cout << "The Designation should not be" << Designation;
}
void Member::SetDateOfBirth(string DateOfBirth)
{
this -> DateOfBirth = DateOfbirth;
}
void Member::SetMaritalStatus(int MaritalStatus)
{
this -> MaritalStatus = (MaritalStatus >= 1 && MaritalStatus <= 3 ? MaritalStatus == -1);
if (this -> MaritalStatus == -1)
cout << "The MaritalStatus should not be" << MaritalStatus;
}
void Member::SetDepartment(string Department)
{
this -> Department = Department;
}
void Member::SetJoinedDate(string JoinedDate)
{
this -> JoinedDate = JoinedDate;
}
void Member::SetNationality(string Nationality)
{
this -> Nationality = Nationality;
}
void Member::SetReligion(string Religion)
{
this -> Religion = Religion;
}
string Member::ToString()
{
stringstream ss;
ss << "ID:" << ID << endl << "IC:" << IC << endl << "Gender:" << Gender << endl << "Age:" << Age << endl << "Designation:" << Designation << endl << "Date Of Birth:" << DateOfBirth << endl << "Marital Status:" << MaritalStatus << endl << "department:" << Department << endl << "Date Joined:" << JoinedDate << endl << "Nationality:" << Nationality << endl << "Religion:" << Religion << endl;
return ss.str();
}
void main ()
{
Member m1;
cout << "Enter ID:";
int x;
cin >> x;
m1.SetID (x);
cout << "Enter IC:";
cin >> x;
m1.SetIC (x);
cout << "1.Male 2.Female" << endl << "Enter Gender:";
cin >> x;
m1.SetGender (x);
string y;
cout << "Enter Age:";
cin >> x;
m1.SetAge (x);
cout << "1.Managing Director 2.Senior manager 3.manager 4.Senior Executive 5.Executive 6.Junior Executive" << endl << "Enter Designation:";
cin >> x;
m1.SetDesignation (x);
cout << "Enter Date Of Birth:";
cin >> x;
m1.SetDateOfBirth (x);
cout << "1.Single 2.Married 3.Divorse" << endl << "Enter Marital Status:";
cin >> x;
m1.SetMaritalStatus (x);
cout << "Enter Department:";
cin >> y;
m1.SetDepartment (y);
cout << "Enter Date Joined:";
cin >> y;
m1.SetJoinedDate (y);
cout << "Enter Nationality:";
cin >> y;
m1.SetNationality (y);
cout << "Enter Religiom:";
cin >> y;
m1.SetReligion (y);
cout << endl << m1.ToString () << endl;
} |
|
|
|
|
|
|
|
|
|
|
发表于 17-5-2010 01:07 AM
|
显示全部楼层
看完了觉得很辛酸,为甚总有大学和学院提供这些完全是不需要的东西来骗钱。
加个IT和Multimedia就假装很高级。
technopreneurship其实不用读的。
看看爱迪生怎样用科技赚钱就可以了。 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 17-5-2010 11:16 PM
|
显示全部楼层
看完了觉得很辛酸,为甚总有大学和学院提供这些完全是不需要的东西来骗钱。
加个IT和Multimedia就假装很高 ...
金旦面 发表于 17-5-2010 01:07 AM 
都读到一半了,学费也供了一半。。。
进退两难。。。 |
|
|
|
|
|
|
|
|
|
|
发表于 21-5-2010 01:41 AM
|
显示全部楼层
看了一眼,那个stringstream难道不是应该用ostringstream?
不过我不怎么用stringstream的,太慢。。
另外我觉得就算没有用到,学学programming,拓展一下思维方式也是不错的。。
而且以后会越来越需要接触这方面的东西,如果你要找人写program的话至少还能大概明白一点什么能做什么不能做。。 |
|
|
|
|
|
|
|
|
|
|

楼主 |
发表于 22-5-2010 10:04 PM
|
显示全部楼层
看了一眼,那个stringstream难道不是应该用ostringstream?
不过我不怎么用stringstream的,太慢。。
另 ...
chingjun 发表于 21-5-2010 01:41 AM 
哈哈。。谢谢你哦
assignment搞定了。。。exam也过了。。
希望可以pass |
|
|
|
|
|
|
|
|
| |
本周最热论坛帖子
|