+ 1
Since I switched to Pro, the practice problems don’t seem to work?
The answers to the practice problems in C++ are not relevant to the questions. Is there a glitch? If I could attach some screen shots, I would show you.
8 Respuestas
+ 4
You're welcome!
This is the usual way that we're following here :)
https://www.sololearn.com/discuss/2697650/?ref=app
Happy learning!
+ 2
Thank you, i didnt have this issue when i was payin gems. It only started when i went pro. Thank you for your help. I know my code is incorrect, i just wish the app could show me where instead of sending me to a page of irrelevent solutions
+ 1
We can help you to understand what you missed in your solution.
That's why I asked you to share it with us.
It doesn't matter if you can do it alone.
Good luck!
+ 1
Thanks for leading me in the right direction. I really thought there was a glitch and i couldnt find a way to reach out to the company. Just the fact that you did reach out means a lot
0
Why would the code matter? Shouldnt the app just tell me i am wrong, like normal, and make me try again?
Why would it default to answers not relevant to the question?
0
Simba
I am on practice problem 7.2 in C++. Every time I try to solve the code, the app sends me to what is called… test cases.
The same thing happened in 6.2 also, but somehow I still got the 10 point experience credit.
The problem states: Write a program that takes two numbers as input, assigns those values to the provided a and b variables, then outputs their sum.
Here is my code.
#include <iostream>
using namespace std;
int main()
{
int a;
int b;
cout << "Please enter a number \n";
cin >> a;
cout << "please enter another number \n";
cin >> b;
int sum = a+b;
cout << sum;
return 0;
}
Why is the app sending me to the test cases? This did not happen in the first couple of practice lessons. It wasn’t until I upgraded to pro. Does that have something to do with it?
I thank you in advance for your help.
0
Alright, figured it out… wow
There is no need for manual inputs since the test cases provide the input values.. 🤔