Тип ошибки:
[Error] expected primary-expression before '.' token
Возникает она в main, при вызове функций из класса.
Условно есть код:
#include
#include
using namespace std;
class test{
public:
int plusone(int a);
string changeword(string b);
};
int test:lusone(int a){
return a++;
}
string test::changeword(string b){
string def=b;
for(int i; i<5; i++){
b=def[abs(i-5)];
}
return b;
}
int main(int argc, char** argv) {
int numb=0;
cin>>numb;
cout<>word;
cout<<test.changeword(word)
return 0;
}
P.S. Прошу отвечать по теме :3
[Error] expected primary-expression before '.' token
Возникает она в main, при вызове функций из класса.
Условно есть код:
#include
#include
using namespace std;
class test{
public:
int plusone(int a);
string changeword(string b);
};
int test:lusone(int a){
return a++;
}
string test::changeword(string b){
string def=b;
for(int i; i<5; i++){
b=def[abs(i-5)];
}
return b;
}
int main(int argc, char** argv) {
int numb=0;
cin>>numb;
cout<>word;
cout<<test.changeword(word)
return 0;
}
P.S. Прошу отвечать по теме :3