Hello,
I am trying to create a program that asks a user to input a integer. That integer will dispaly "*" (i.e. enter 4 diplay - ****)
This is what I came up with so far to no luck!
#include "stdafx.h"
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
int main()
{
int n;
cout << "Please enter a integer ";
cin >> n;
for (int i = n; i <= 25; n++)
{
cout << "*" ;
}
cout << endl;
return 0;
}