Jump to content

OverclockingNub

Member
  • Posts

    50
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

OverclockingNub's Achievements

  1. i have three seperate files, one is testcode.cpp, another is Cat.h and lastly Cat.cpp im trying to create an object of class Cat and make it meow but im getting an error that i dont know how to fix. any ideas? < #include <iostream> #include "Cat.h" using namespace std; int main(){ Cat kitty; kitty.speak(); return 0; } > from testcode.cpp < #ifndef CAT_H_ #define CAT_H_ class Cat { public: void speak(); }; #endif /* CAT_H_ */ > from Cat.h < #include <iostream> #include "Cat.h" using namespace std; void Cat::speak(){ cout<< "meow" << endl; } int main(){ } > from Cat.cpp the error is attached
  2. i keep getting weird errors when i want to run this code, i have code runner and the c/c++ runner installed
  3. I have accélération so I just need to find the mass of it after using friction?
  4. I’m givin 5 kg mass on string friction on block is 24 N accel is 2.9 how do I find mass of steel block
  5. That link helped a lot. I’m writing that on my formula sheet
×