Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

my program isn't this but im trying to make it say words under the words it's not working can you fix it

0 votes
asked May 9, 2018 by Eveldun 123 (180 points)
#include <iostream>
#include <string>
using namespace std;

int main() {

string pw;
string error = "ERROR";

cout <<"hi1"<< endl;
cin >> pw;

cout <<"hi2"<< endl;
cin >> pw;
    
}

2 Answers

0 votes
answered May 12, 2018 by Mohamed Yahia (140 points)

you can't insert string using (cin) 

you should write it like this 

 getline(cin, pw);

0 votes
answered May 12, 2018 by anonymous
ERROR

hi1 123

hi2 456
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...