guys... im on a program now.. i have this prob...
that when u inter a number a asterisk would be the out put in a form of a trapezoid...
-
i got stuck hir guys...
#include<iostream>
using namespace std;
int main(){
int VALUE=0;
cout<<"inter VALUE: ";
cin>>VALUE;
cin.ignore();
for(int i = 0; i < VALUE; i++)
{
cout << "*" <<flush;
}
a little help for the newbie guys.. thnx alot..