Horje
pum game in c++ Code Example
pum game in c++
#include<iostream>
using namespace std;

int main()
{
	int n, t{ 1 };
	cin >> n;
	for (int i = 1; i <= n; i++)
	{
		cout << t << " " << t+1 << " " << t+2 << " " << "PUM\n";
		t += 4;
	}
	
	return 0;
}




Cpp

Related
c++ loop through array Code Example c++ loop through array Code Example
makefile for single cpp file Code Example makefile for single cpp file Code Example
cout alternative c++ Code Example cout alternative c++ Code Example
an array that take different data type c++ Code Example an array that take different data type c++ Code Example
get first element of set c++ Code Example get first element of set c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8