V
VitalikB
Всем привет. Я только начинаю учить с++. Хотел в Codeblocks попрактиковатся з класами и сразу столкнулся с проблемой которой не понимаю.Помогите разобратся.
main.cpp|4|error: expected unqualified-id before 'using'|
main.cpp||In function 'int main()'Neutral
main.cpp|11|error: 'cout' was not declared in this scope|
main.cpp|11|error: 'endl' was not declared in this scope|
файл probnik.h:
файл main.cpp:
main.cpp|4|error: expected unqualified-id before 'using'|
main.cpp||In function 'int main()'Neutral
main.cpp|11|error: 'cout' was not declared in this scope|
main.cpp|11|error: 'endl' was not declared in this scope|
файл probnik.h:
C++:
//#ifndef PROBNIK_H_INCLUDED
//#define PROBNIK_H_INCLUDED
class probnik {
int i;
public:
probnik (int a):i(a){}
int show(){return i;}
}
//#endif // PROBNIK_H_INCLUDED
файл main.cpp:
C++:
#include <iostream>
#include "probnik.h"
using namespace std;
int main()
{
int a=0;
//probnik i(5);
//a=i.show();
cout <<a<<endl<< "Hello world!" << endl;
return 0;
}