Difference between revisions of "User:Ateremetskyi"
Ateremetskyi (talk | contribs) |
Ateremetskyi (talk | contribs) |
||
Line 33: | Line 33: | ||
− | int(*fptr[3])(int, int){name1, name2, name3}; | + | int(*fptr[3])(int, int){name1, name2, name3}; |
− | |||
The better way to validate any attribute is to use functions . | The better way to validate any attribute is to use functions . | ||
ValidYear = getYear(Year); // Bool function | ValidYear = getYear(Year); // Bool function | ||
− | |||
Check what do functions cin.clear()and others mean . | Check what do functions cin.clear()and others mean . | ||
Line 46: | Line 44: | ||
I like the way the teacher sends the output to the function | I like the way the teacher sends the output to the function | ||
− | + | sendMsg("The number is", double number); // Something like that | |
− | |||
− | bool validCCV(int ccv){ | + | bool validCCV(int ccv){ |
− | + | return ccv >= 100 && ccv <= 999; | |
− | } // Better example of the function above . | + | } // Better example of the function above . |
----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
Revision as of 12:29, 9 February 2012
Name: Anton Teremetskyi
SID: 068937093
E-mail: ateremetskyi@learn.senecac.on.ca
Blog: Anton's Blog
Skype: Teremetskyi_Anton
IRC Nick: ateremetskyi
My Links:
Class notes : 09.02.2012
int(*fptr[3])(int, int){name1, name2, name3};
The better way to validate any attribute is to use functions .
ValidYear = getYear(Year); // Bool function
Check what do functions cin.clear()and others mean .
I like the way the teacher sends the output to the function
sendMsg("The number is", double number); // Something like that
bool validCCV(int ccv){ return ccv >= 100 && ccv <= 999; } // Better example of the function above .