John
Member
- Joined
- Aug 8, 2009
- Messages
- 121
- Reaction score
- 0
- Points
- 16
So I'm learning to use strings and I'm trying to make a small program where the user first input random characters. i.e:
abcdegfaereagd
the program will then check if all the characters of the alphabet are used and if not the program will then output error missing characters ***.
#include <string>
#include <iostream>
using namespace std;
int main() {
string one;
cin >> one;
// I'm not really sure what I should do next?
// Should I use for or while loop?
return EXIT_SUCCESS;
}
abcdegfaereagd
the program will then check if all the characters of the alphabet are used and if not the program will then output error missing characters ***.
#include <string>
#include <iostream>
using namespace std;
int main() {
string one;
cin >> one;
// I'm not really sure what I should do next?
// Should I use for or while loop?
return EXIT_SUCCESS;
}