How Would I go about to write this? is it possible?

I just want to know if it is possible to write a program to create say an 'x' amount of emails where you are asked how many to create and you give lets say '6' then it should create 6 e-mails with the same password but each email is as follow:

1
2
3
4
  email1@gmail.com
  email2@gmail.com
  email3@gmail.com
  email4@gmail.com


etc.?
1
2
3
4
5
6
7
8
9
10
11
12
#include <iostream>

int main()
{
	unsigned noemail {};

	std::cout << "How many emails to create: ";
	std::cin >> noemail;

	for (unsigned e {}; e < noemail; ++e)
		std::cout << "email" << e + 1 << "@gmail.com\n";
}

thank you for the reply @seeplus , but what i meant was create actual Legit emails

almost like a script where it auto runs and creates an x amount of emails with the same password that I can access and use. is that possible or not?
Where are the legit email addresses expected to come from?
This has a smell of a mass spam email...
its not for spamming purposes , I just want it to be as if I manually went and created a gmail account . its just so that I can have a lot of e-mail accounts so that I can sign into a site (for a game) and get some extra benefits for myself
@OP
This has an even worse smell to it than spam. Generating passwords and getting 'some extra benefits', innocent as it might be, sounds bad.
Topic archived. No new replies allowed.