I've been looking thru the internet and can't find a solution.
I'm stuck in C++ primer book chapter 1, 1.5.1
Program won't run #include "Sales_item.h" with errors
No such a file or directory.
I'm using codeblock.
Help me please.
1 2 3 4 5 6 7 8 9 10 11
#include <iostream>
#include "Sales_item.h"
int main()
{
Sales_item book;
// read ISBN, number of copies sold, and sales price
std::cin >> book;
// write ISBN, number of copies sold, total revenue, and average price
std::cout << book << std:::endl;
return 0;
}