Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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
";
		t += 4;
	}
	
	return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: 1603. Design Parking System leetcode solution in c++ 
Cpp :: Basic Variables Entry C++ Programming 
Cpp :: is there interfaces in c++ like 
Cpp :: nested loop c++ program example 
Cpp :: rand function c++ 
Cpp :: simple interest rate 
Cpp :: how to srt vector array 
Cpp :: c++ Is there still a need to provide default constructors to use STL containers 
Cpp :: multiply two arbitrary integers a and b (a greater than b) 
Cpp :: how to calculate the sum of primary diagonal matrix and secondary diagonal matrix using c++ 
Cpp :: geekforgeeks stacks 
Cpp :: c++ ascii value 
Cpp :: how to pass arrays by reference c++ 
Cpp :: c++ shift array to the right 
Cpp :: short hand if else in c++ 
Cpp :: cpp tutorial 
Cpp :: what does | mean in c++ 
Cpp :: ceil value in c++ using formula 
Cpp :: memsert 
C :: bold text in c 
C :: full installation of clang in ubuntu 
C :: sstf program in c 
C :: express.static public 
C :: %hd c 
C :: successeur nombre chaine 
C :: how to mutex lock in c 
C :: reverse of a string in c 
C :: how to open a website in c 
C :: c print sizeof char 
C :: how to reverse a string in c 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =