> A program that finds the first 5 multiples of 5?

A program that finds the first 5 multiples of 5?

Posted at: 2014-12-18 
include

#include

int main(void){

std::string which[] = {"zeroth", "first", "second", "third", "forth", "fifth"};

for(int i=1; i<= 5; i++){

std::cout << "The " << which[i] <<" multiple of 5 is " << 5*i << std::endl;

}

return 0;

}

i want a program that find the first 5 multiples of 5 i want to see on my command when i run the program this

the first multiple of 5 is 5

the second multiple of 5 is 10

the third multiple of 5 is 15

20

25

im writing a c++ program using visual studio