python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
3D vector class and assert that does not work
I'm trying creating a 3D class Vector and I have prepared the following code:
class Vector:
def __init__(self, x, y, z):
self.x = x
self.y = y
self.z = z
...
12666727b9
Votes: 0
Answers: 0
"Undefined symbols for architecture arm64" - What does this mean?
I'm unable to get my code to run, and the internet doesn't seem to know why. I'm not sure what I need to let you know, but I am using CLion if that helps.
This is my plant.h file:
#ifndef COURSEWORK_P...
TheEmpressEllaseen
Votes: 0
Answers: 1
Multiples of 10 in a list
I am currently doing an assignment in my intro level CS class and just need a smidge of help.
They are asking me to write a program that reads a list of integers and determines if it has;
multiples o...
meahghan
Votes: 0
Answers: 3
Confusion About C++ 20 Modules
In a module, do you have to both create declarations in a .ixx file and definitions in a .cpp file, or do you just put everything in a .ixx file? Is there anything else that I should know about module...
Jonar
Votes: 0
Answers: 2