инициализация идет у функциях выше
int number_of_goods; // Вот тут рандомное значение
int* price_of_goods = new int[number_of_goods]; // ???
int count_of_days; // Вот тут тоже
int *works_hours = new int[count_of_days]; // ???
for (int i = 0; i < sizeof(price_of_goods)/sizeof(int); i++) {
if (temp == price_of_goods[i]) {
cout << "Yes, it has this price" << endl;
z++;
break;
}
sizeof(price_of_goods) == sizeof(int*) / sizeof(int)
#include <iostream>
#include <algorithm>
#include <sstream>
#include <string>
#include <vector>
#include <iterator>
using namespace std;
int main()
{
string s = "xxxxxxxxxxxxxxxxxx|yyyyyyyyyyyyyyyyyy|zzzzzzzzzzzzzzzzzz";
auto ss = istringstream(s);
vector<string> vs;
string line;
while(getline(ss, line, '|'))
{
vs.push_back(line);
// В твоем случае
// WriteFile(file, line.c_str(), line.size(), &written, 0);
}
copy(vs.begin(), vs.end(), ostream_iterator<string>(cout, " "));
}
basic_istream& getline( char_type* s, std::streamsize count );
#include <iostream>
#include <algorithm>
#include <iterator>
#include <cctype>
#include <sstream>
#include <string>
#include <vector>
using namespace std;
auto get_numbers = [](istream& is){
vector<int> numbers;
if(is){
int n = 0;
while(is.get() != 10) // 10 linux; 13 windows
{
is.unget();
is >> n;
numbers.push_back(n);
}
}
return numbers;
};
auto get_numbers2 = [](istream& is){
string s;
getline(is, s);
istringstream sn(s);
vector<int> numbers;
copy(istream_iterator<int>(sn), {}, back_inserter(numbers));
return numbers;
};
auto get_numbers3 = [](istream& is){
char c = 0;
vector<int> numbers;
int n = 0;
// вот тут предполагается что на вход будут подаваться
// все таки обычные целые числа а не 5---42 --28-------56
while((c = is.get()) && (isdigit(c) || c == ' ' || c == '-'))
{
is.unget();
is >> n;
numbers.push_back(n);
}
return numbers;
};
int main()
{
auto vn = get_numbers(cin);
if(!vn.empty())
{
copy(vn.begin(), vn.end(), ostream_iterator<int>(cout, " "));
}
else
{
cout << "empty vn";
}
cout << endl;
auto vn2 = get_numbers2(cin);
if(!vn2.empty())
{
copy(vn2.begin(), vn2.end(), ostream_iterator<int>(cout, " "));
}
else
{
cout << "empty vn2" << endl;
}
cout << endl;
auto vn3 = get_numbers3(cin);
if(!vn3.empty())
{
copy(vn3.begin(), vn3.end(), ostream_iterator<int>(cout, " "));
}
else
{
cout << "empty vn3" << endl;
}
}
И это вприницпи работает. Как мне сделать так, что бы у каждого предмета можно было выставлять определённый коофицент выпадения? Или хотя бы подскажите куда копать, в каком направлении.
#include <iostream>
#include <map>
#include <string>
using namespace std;
map<char, int> freq(const string& src, const string& pat)
{
map<char, int> freq_dict;
for(char c : pat)
{
if(freq_dict.count(c) == 0)
{
freq_dict[c] = 0;
}
}
for(char c : src)
{
if(freq_dict.find(c) != freq_dict.end())
{
freq_dict[c]++;
}
}
return freq_dict;
}
int main()
{
string words, pat;
cout << "Введите предложение => "; getline(cin, words);
cout << "Введите набор символов => "; getline(cin, pat);
for(const auto& p : freq(words, pat))
{
cout << p.first << " : " << p.second << "\n";
}
}
#include <iostream>
#include <iterator>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
auto input = [](const string& msg)
{
cout << msg;
size_t i = 0;
cin >> i;
return [i](istream& is){
vector<int> v;
copy_n(istream_iterator<int>{is}, i, back_inserter(v));
return v;
};
};
int main()
{
auto v = input("Enter number of numbers, I'm lazy: ");
auto values = v(cin);
}
#include <iostream>
#include <iterator>
#include <algorithm>
#include <cctype>
using namespace std;
int main()
{
const size_t sz = 100;
int a[sz]{0};
cout << "Enter numbers: " << endl;
size_t cnt = 0;
while(cin)
{
char c = static_cast<char>(cin.get());
if(isdigit(c) || c == '-' || c == '+')
{
if(cnt < sz - 1)
{
int i = 0;
cin.putback(c);
cin >> i;
a[cnt++] = i;
}
else
{
cout << "Out of range: " << sz << endl;
break;
}
}
else if(c == ' ')
{
continue;
}
else
{
cout << "End or not number" << endl;
break;
}
}
copy_n(a, cnt, ostream_iterator<int>(cout, " "));
}