User profile: tfityo

User info
User name:tfityo
History
Joined:
Number of posts:171
Latest posts:

Need help with Tax project
You can try something like it: [code] double computeTax(double fedTotalPay ){ if (fedTotalPay < 0) r...

String to Long Long
It is too long to fit into 8 bytes.

String to Long Long
Instead of [code] longlong strtolonglong(string s) { int longlong; longlong = s - '0'; ...

String to Long Long
You can check if the string is an valid number (ie, contains optional +- at the beginning and just s...

Finding letters in a vector of strings
You can you find method: [code] dna[0].find("cg"); [/code] Read full description of it: http://www....