Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.87/15: Рейтинг темы: голосов - 15, средняя оценка - 4.87
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026

Как тут исправить ошибки?

04.11.2011, 19:04. Показов 3312. Ответов 11
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Смысл проги создать класс,который осуществляет денежные операции и протестировать его .
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * code.cpp
 *
 *  Created on: 04.11.2011
 *      Author: Sensei
 */
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
class Account
{
public:
Account(int money)
{
setBalance(money);
}
void credit(int creditmoney)
{
    int buf;
    cin>>creditmoney;
    if (creditmoney>=0)
    {
    buf = getBalance() + creditmoney ;
    setBalance(buf);
    cout<<"Вы взяли кредит,теперь ваш баланс"<<getBalance()<<endl;
    };
}
void debit(int moneyout)
{
    int buf;
    if (moneyout>balance)
    cout<<"Сумма,которую вы пытаитесь запросить превышает ваш баланс"<<endl;
    if (moneyout<=balance)
    {
    buf = getBalance()-moneyout;
    setBalance(buf);
    cout<<"Вы сняли"<< moneyout <<" на счете осталось " << getBalance() << endl;
    };
 
}
void setBalance(int money)
{
    if (money<0)
        balance = 0;
    if (money>=0)
        balance = money;
}
 
int getBalance()
{
 
    return balance;
}
private :
int balance;
};
int main()
{
Account Account1(-500);
Account Account2(1000);
cout<<"Операция выполняется\n"<<Account1.balance<<endl;
cout<<"Операция выполняется\n"<<Account2.balance<<endl;
cout<<"Операция выполняется\n"<<Account1.debit(500)<<endl;
cout<<"Операция выполняется\n"<<Account2.debit(200)<<endl;
return 0;
}
Ошибки:
Description Resource Path Location Type
'int Account::balance' is private code.cpp /Account/src line 51 C/C++ Problem
within this context code.cpp /Account/src line 57 C/C++ Problem
within this context code.cpp /Account/src line 58 C/C++ Problem
statement has no effect code.cpp /Account/src line 57 C/C++ Problem
statement has no effect code.cpp /Account/src line 58 C/C++ Problem
0
cpp_developer
Эксперт
20123 / 5690 / 1417
Регистрация: 09.04.2010
Сообщений: 22,546
Блог
04.11.2011, 19:04
Ответы с готовыми решениями:

Как исправить ошибки?
есть три ошибки: 1.выход за приделы массива 2.решётка сдвигается только когда двигается игрок 3.как сделать скорость движения...

Как исправить ошибки?
Задание было :Доделать код,что бы был конструктор с параметром учитель и со своими set- get- функциями...Может опять где чего намудрил...

Как исправить ошибки
#include &quot;stdafx.h&quot; #include &lt;iostream&gt; #include &lt;conio.h&gt; #include &lt;stdio.h&gt; #include &lt;string.h&gt; using namespace std; ...

11
В астрале
Эксперт С++
 Аватар для ForEveR
8049 / 4806 / 655
Регистрация: 24.06.2010
Сообщений: 10,562
04.11.2011, 19:15
iluxa1810, balance приватный член класса. юзайте getBalance()
1
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026
04.11.2011, 19:15  [ТС]
UPD:
Исправил немного код и ошибки новые появились

Description Resource Path Location Type
'int Account::balance' is private code.cpp /Account/src line 56 C/C++ Problem
no match for 'operator<<' in 'std::operator<< [with _Traits = std::char_traits<char>](((std::basic_ostream<char>&)(& std::cout)), ((const char*)"\37777777716\37777777757\37777777 745\37777777760\37777777740\37777777766\ 37777777750\37777777777 \37777777742\37777777773\37777777757\377 77777756\37777777753\37777777755\3777777 7777\37777777745\37777777762\37777777761 \37777777777\012")) << Account1.Account::debit(500)' code.cpp /Account/src line 65 C/C++ Problem
no match for 'operator<<' in 'std::operator<< [with _Traits = std::char_traits<char>](((std::basic_ostream<char>&)(& std::cout)), ((const char*)"\37777777716\37777777757\37777777 745\37777777760\37777777740\37777777766\ 37777777750\37777777777 \37777777742\37777777773\37777777757\377 77777756\37777777753\37777777755\3777777 7777\37777777745\37777777762\37777777761 \37777777777\012")) << Account2.Account::debit(200)' code.cpp /Account/src line 66 C/C++ Problem
within this context code.cpp /Account/src line 63 C/C++ Problem
within this context code.cpp /Account/src line 64 C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(bool) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 173, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(const void*) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 225, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 209, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(float) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 213, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long double) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 221, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 165, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 200, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long unsigned int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 204, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 169, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(short unsigned int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 180, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream< _CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>, std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios<char>] Account line 117, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 127, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(unsigned int) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 191, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(int) [with _CharT = char, _Traits = std::char_traits<char>] Account line 105, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\bits\ostream.tcc C/C++ Problem
std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(short int) [with _CharT = char, _Traits = std::char_traits<char>] Account line 91, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\bits\ostream.tcc C/C++ Problem
std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream< _CharT, _Traits>::__streambuf_type*) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__streambuf_type = std::basic_streambuf<char>] Account line 119, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\bits\ostream.tcc C/C++ Problem
candidates are: std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream< _CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char, _Traits = std::char_traits<char>, std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>] Account line 108, external location: c:\program files (x86)\mingw\lib\gcc\mingw32\4.5.2\includ e\c++\ostream C/C++ Problem
0
В астрале
Эксперт С++
 Аватар для ForEveR
8049 / 4806 / 655
Регистрация: 24.06.2010
Сообщений: 10,562
04.11.2011, 19:17
Исправленный код в студию.
1
237 / 210 / 29
Регистрация: 08.06.2011
Сообщений: 467
04.11.2011, 19:22
C++
1
cout<<"Операция выполняется\n"<<Account1.debit(500)<<endl;
Метод debit возвращает void, т.е. ничего не возвращает, а вы пытаетесь это вывести в поток
1
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026
04.11.2011, 19:25  [ТС]
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
class Account
{
public:
Account(int money)
{
setBalance(money);
}
void credit(int creditmoney)
{
    int buf;
    cin>>creditmoney;
    if (creditmoney>=0)
    {
    buf = getBalance() + creditmoney ;
    setBalance(buf);
    cout<<"Вы взяли кредит,теперь ваш баланс"<<getBalance()<<endl;
    };
}
void debit(int moneyout)
{
    int buf;
    if (moneyout>balance)
    cout<<"Сумма,которую вы пытаитесь запросить превышает ваш баланс"<<endl;
    if (moneyout<=balance)
    {
    buf = getBalance()-moneyout;
    setBalance(buf);
    cout<<"Вы сняли"<< moneyout <<" на счете осталось " << getBalance() << endl;
    };
 
}
void setBalance(int money)
{
    if (money<0)
        balance = 0;
    if (money>=0)
        balance = money;
}
 
int getBalance()
{
 
    return balance;
}
private :
int balance;
 
};
int main()
{
Account Account1(-500);
Account Account2(1000);
cout<<Account1.getBalance()<<endl;
cout<<Account2.getBalance()<<endl;
Account1.debit(500);
Account2.debit(200);
Account1.credit(1000);
Account2.credit(-500);
return 0;
}
P.S Попробовал cout'ы в конце убрать ,т.к в функциях они итак есть...

Добавлено через 2 минуты
Еще ,я не могу понять,почему ругань идет на приват...
0
Эксперт С++
4986 / 3093 / 456
Регистрация: 10.11.2010
Сообщений: 11,170
Записей в блоге: 10
04.11.2011, 19:32
getBalance - это функция, а не переменная.

P.S.: передай Sensei-ю что он балбес.
1
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026
04.11.2011, 19:41  [ТС]
lazybiz, ну да и в чем ошибка? Я пытаюсь вывести ее значение в поток и появляется ошибка .

Добавлено через 6 минут
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
class Account
{
public:
Account(int money)
{
setBalance(money);
}
void credit(int creditmoney)
{
    int buf;
    cin>>creditmoney;
    if (creditmoney>=0)
    {
    buf = getBalance() + creditmoney ;
    setBalance(buf);
    cout<<"Вы взяли кредит,теперь ваш баланс"<<getBalance()<<endl;
    };
}
void debit(int moneyout)
{
    int buf;
    if (moneyout>getBalance())
    cout<<"Сумма,которую вы пытаитесь запросить превышает ваш баланс"<<endl;
    if (moneyout<=getBalance())
    {
    buf = getBalance()-moneyout;
    setBalance(buf);
    cout<<" Вы сняли "<< moneyout <<" на счете осталось " << getBalance() << endl;
    };
 
}
void setBalance(int money)
{
    if (money<0)
        balance = 0;
    if (money>=0)
        balance = money;
}
 
int getBalance()
{
 
    return balance;
}
private :
int balance;
 
};
int main()
{
Account Account1(-500);
Account Account2(1000);
cout<<Account1.getBalance()<<endl;
cout<<Account2.getBalance()<<endl;
Account1.debit(500);
Account2.debit(200);
Account1.credit(1000);
Account2.credit(-500);
return 0;
}
Теперь вылетает одна ошибка

Description Resource Path Location Type
cannot open output file Account.exe: Permission denied Account C/C++ Problem
0
Эксперт С++
4986 / 3093 / 456
Регистрация: 10.11.2010
Сообщений: 11,170
Записей в блоге: 10
04.11.2011, 19:42
Номера строк в логах ошибок соответствуют номерам строк кода в посте?
Последние логи соответствуют последнему коду? Если нет, то покажи самые последние логи.
0
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026
04.11.2011, 19:44  [ТС]
Ошибку я пофиксил перезапуском Эклипса.
Теперь проблема в том,что кредит не выводится ...

Добавлено через 53 секунды
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<iostream>
using std::cout;
using std::cin;
using std::endl;
class Account
{
public:
Account(int money)
{
setBalance(money);
}
void credit(int creditmoney)
{
    int buf;
    cin>>creditmoney;
    if (creditmoney>=0)
    {
    buf = getBalance() + creditmoney ;
    setBalance(buf);
    cout<<"Вы взяли кредит,теперь ваш баланс"<<getBalance()<<endl;
    };
}
void debit(int moneyout)
{
    int buf;
    if (moneyout>getBalance())
    cout<<"Сумма,которую вы пытаитесь запросить превышает ваш баланс"<<endl;
    if (moneyout<=getBalance())
    {
    buf = getBalance()-moneyout;
    setBalance(buf);
    cout<<" Вы сняли "<< moneyout <<" на счете осталось " << getBalance() << endl;
    };
 
}
void setBalance(int money)
{
    if (money<0)
        balance = 0;
    if (money>=0)
        balance = money;
}
 
int getBalance()
{
 
    return balance;
}
private :
int balance;
 
};
int main()
{
Account Account1(-500);
Account Account2(1000);
cout<<Account1.getBalance()<<endl;
cout<<Account2.getBalance()<<endl;
Account1.debit(500);
Account2.debit(200);
Account1.credit(1000);
Account2.credit(-500);
return 0;
}
Работа программы :
0
1000
Сумма,которую вы пытаитесь запросить превышает ваш баланс
Вы сняли 200 на счете осталось 800
0
Эксперт С++
4986 / 3093 / 456
Регистрация: 10.11.2010
Сообщений: 11,170
Записей в блоге: 10
04.11.2011, 19:47
Цитата Сообщение от iluxa1810 Посмотреть сообщение
cannot open output file Account.exe: Permission denied Account C/C++ Problem
Нажми Ctrl + Shift + Escape и посмотри, не запущено ли у тебя приложение.

Добавлено через 1 минуту
Цитата Сообщение от iluxa1810 Посмотреть сообщение
if (creditmoney>=0)
Ну, видимо он не выводится потому, что creditmoney < 0

Добавлено через 1 минуту
C++
1
2
3
4
void credit(int creditmoney) {
    int buf;
    cin>>creditmoney;
    ...
Эмм.. поясни, что означает каждая строка?
0
13 / 13 / 11
Регистрация: 03.09.2011
Сообщений: 1,026
04.11.2011, 19:50  [ТС]
Я все пофиксил \ ^_^ /

Добавлено через 1 минуту
А как программу в эклипсе отрубать ? Просто консоль не открывается,а работа программы отображается во встроенной консоли ...
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
raxper
Эксперт
30234 / 6612 / 1498
Регистрация: 28.12.2010
Сообщений: 21,154
Блог
04.11.2011, 19:50
Помогаю со студенческими работами здесь

Как исправить ошибки
Menu.h #include &lt;conio.h&gt; #include &lt;stdio.h&gt; #include &lt;dos.h&gt; #include &lt;process.h&gt; #include &lt;string.h&gt; #define LEFT 75 ...

Как исправить ошибки?
class CRageBot { public: bool Run(); bool Autowall( CBaseEntity* other, const Vector&amp; startpos, const Vector&amp; endpos, float*...

Как исправить ошибки?
Вот код программы. Помогите исправить ошибки. #include &quot;stdafx.h&quot; #include &lt;iostream&gt; #include &lt;windows.h&gt; #include...

Как исправить эти ошибки
как исправить ети ошибки Код: #include&lt;iostream.h&gt; #include&lt;conio.h&gt; #include&lt;string.h&gt; #define n 10 struct Krainy { ...

подскажите как исправить ошибки
программы рабочие,но при компиляции в Borland C++ выдает кучу ошибок :С что делать? Error LAB8.CPP 1: Unable to open include file...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
12
Ответ Создать тему
Новые блоги и статьи
SDL3 для Web (WebAssembly): Обработчик клика мыши в браузере ПК и касания экрана в браузере на мобильном устройстве
8Observer8 02.02.2026
Содержание блога Для начала пошагово создадим рабочий пример для подготовки к экспериментам в браузере ПК и в браузере мобильного устройства. Потом напишем обработчик клика мыши и обработчик. . .
Философия технологии
iceja 01.02.2026
На мой взгляд у человека в технических проектах остается роль генерального директора. Все остальное нейронки делают уже лучше человека. Они не могут нести предпринимательские риски, не могут. . .
SDL3 для Web (WebAssembly): Вывод текста со шрифтом TTF с помощью SDL3_ttf
8Observer8 01.02.2026
Содержание блога В этой пошаговой инструкции создадим с нуля веб-приложение, которое выводит текст в окне браузера. Запустим на Android на локальном сервере. Загрузим Release на бесплатный. . .
SDL3 для Web (WebAssembly): Сборка C/C++ проекта из консоли
8Observer8 30.01.2026
Содержание блога Если вы откроете примеры для начинающих на официальном репозитории SDL3 в папке: examples, то вы увидите, что все примеры используют следующие четыре обязательные функции, а. . .
SDL3 для Web (WebAssembly): Установка Emscripten SDK (emsdk) и CMake для сборки C и C++ приложений в Wasm
8Observer8 30.01.2026
Содержание блога Для того чтобы скачать Emscripten SDK (emsdk) необходимо сначало скачать и уставить Git: Install for Windows. Следуйте стандартной процедуре установки Git через установщик. . . .
SDL3 для Android: Подключение Box2D v3, физика и отрисовка коллайдеров
8Observer8 29.01.2026
Содержание блога Box2D - это библиотека для 2D физики для анимаций и игр. С её помощью можно определять были ли коллизии между конкретными объектами. Версия v3 была полностью переписана на Си, в. . .
Инструменты COM: Сохранение данный из VARIANT в файл и загрузка из файла в VARIANT
bedvit 28.01.2026
Сохранение базовых типов COM и массивов (одномерных или двухмерных) любой вложенности (деревья) в файл, с возможностью выбора алгоритмов сжатия и шифрования. Часть библиотеки BedvitCOM Использованы. . .
SDL3 для Android: Загрузка PNG с альфа-каналом с помощью SDL_LoadPNG (без SDL3_image)
8Observer8 28.01.2026
Содержание блога SDL3 имеет собственные средства для загрузки и отображения PNG-файлов с альфа-каналом и базовой работы с ними. В этой инструкции используется функция SDL_LoadPNG(), которая. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru