Dyskusje Q&A
c++
1 Głos
3 odpowiedziHelp
0 głosów
3 odpowiedziNo output in my code???
0 głosów
3 odpowiedziExecution time
1 Głos
1 OdpowiedźIf-else problem
1 Głos
6 odpowiedziC++ Question
3 głosów
3 odpowiedziTimer?
1 Głos
1 OdpowiedźC++ Question
3 głosów
1 OdpowiedźWhat is wrong with this
0 głosów
2 odpowiedziHow can declare a word?
0 głosów
2 odpowiedziWhat's wrong?!
2 głosów
3 odpowiedziPost- cin Text?
0 głosów
3 odpowiedziC++ help
-1 Głos
2 odpowiedziIn the code below the output is 2. This code is used in a challenge and I get an error when I select the answer 2. It accepts as correct the answer 1 which I believe is wrong. If you agree please thumbs up.
If you find any other errors please post them here!
#include <iostream>
using namespace std;
int main()
{
for(int i=1; i>=1; i++) {
if(i<1 || i>1){
cout << i;
break;
}
}
return 0;
}
8 głosów
8 odpowiedziWhy it doesn't work?!
2 głosów
5 odpowiedzican anyone plz explain me this program step by step?#include <iostream>
using namespace std;
class MyClass {
public:
int var;
MyClass() { }
MyClass(int a)
: var(a) { }
MyClass operator+(MyClass &obj) {
MyClass res;
res.var= this->var+obj.var;
return res;
}
};
int main() {
MyClass obj1(12), obj2(55);
MyClass res = obj1+obj2;
cout << res.var;
}I am not getting the part inside operator+
0 głosów
8 odpowiedziPopularne dzisiaj
Question
3 Votes
overloading operators << >>
1 Votes
I dont now that how to do js
2 Votes
fully dynamic arrays
1 Votes
Wishkit alternative for android
1 Votes
How to start in web dev?
0 Votes
Hi
0 Votes
Issue in code
0 Votes