Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by williamdev

  1. williamdev

    @Malcom Just a little project and a little experience could be gained in app development

    @Malcom Just a little project and a little experience could be gained in app development
  2. williamdev

    Hey you get my messages

    Hey you get my messages
  3. williamdev

    Also have you ever considered making an app for this forum

    Also have you ever considered making an app for this forum
  4. williamdev

    Also if you’re not willing to give me his info due to privacy reasons then just tell him that I...

    Also if you’re not willing to give me his info due to privacy reasons then just tell him that I need to get back on track with coding and all because time has made me lose knowledge of a lot of concepts.
  5. williamdev

    You have Daniel’s contact info because he contacted me almost two years ago but he may not be...

    You have Daniel’s contact info because he contacted me almost two years ago but he may not be active now
  6. williamdev

    get me connected back to Daniel he’s been concerned about webwarebox and I’m not sure he’s...

    get me connected back to Daniel he’s been concerned about webwarebox and I’m not sure he’s active on here anymore
  7. williamdev

    Just now seeing this sorry I am alive

    Just now seeing this sorry I am alive
  8. williamdev

    My First Project: A Complete and Intelligent Calculator

    I will make a new project that takes into consideration all of the feedback I have received from the start. Thank you for the feedback Daniel and eeflores, you are the people who make me feel like coding is worth it since I have someone to show it to who understands it and can give feedback.
  9. williamdev

    My First Project: A Complete and Intelligent Calculator

    I just didn't know if I should put both. I tried only putting exit but it didn't exit, but I think it's fixed after refactoring so I will remove abort.
  10. williamdev

    My First Project: A Complete and Intelligent Calculator

    I want to try another project. If there are any other issues with this project, tell me, but don't expect me to respond immediately as I will be working on a different project to learn more about classes, arrays, objects, for loops, etc.. after rewatching this FreeCodeCamp C++ video since I have...
  11. williamdev

    My First Project: A Complete and Intelligent Calculator

    The functions make the codebase very modular, and more readable. Thank you for your feedback. I should also watch a video on coding practices and maybe computer science basics like algorithms and such.
  12. williamdev

    My First Project: A Complete and Intelligent Calculator

    Thank you for the feedback. I copy-pasted some stuff and along with it I had comments stating issues that I have now fixed, and I have sort of missed that so I will delete it and revise the comments too. If the name of a variable, function, etc is self-explanatory, then I won't describe what it...
  13. williamdev

    My First Project: A Complete and Intelligent Calculator

    And the func.h... #pragma once void add_Onto(int& past, int& present, int& after, bool& Operate, std::string& setting) { if (setting == "+") { std::cout << "Give another number to add to your previous result, " << past << ":" << std::endl; std::cin >> after...
  14. williamdev

    My First Project: A Complete and Intelligent Calculator

    Ok here's the new code! I think I did this correctly, there is no nesting and none of the code goes outside my code view, and it works the same as before. #include <iostream> #include <stdlib.h> #include "func.h" int main() { int first_Num; //Your First Number int second_Num; //Your...
  15. williamdev

    My First Project: A Complete and Intelligent Calculator

    So how do you advise that I fix the nesting? Should I use functions? I took your other feedback and I will use it next time since it is straight to the point but I just don’t know how I would fix nesting. Could I remove some pointless if and while loops since I have read my code and I have...
Back
Top Bottom