Help with simple programThose functions are uneeded. [code]#include <iostream> using namespace std; int main() { dou...
If statement troubles[code]cout << x * y;[/code] should be [code]cout << x * z;[/code]
Explain this to me please; For LoopsYou need to use these things: [code]{}[/code] [code]for (int i = 0; i < 10; i++) { temp[i] = 2 ...
Input Number, Output Characters?Something like [code]#include <iostream> #include <sstream> int main() { std::string input; ...
i need help ![code] cin >> "first choice">> x; [/code] You can't do this. cout and cin need to be separate. [co...