Thursday 12 October 2017

How to print '*' in decreasing order in c++??



#include<iostream>
#include<conio.h>
using namespace std;
int main(){
int choice;
cout<<"Enter how many rows do you want ? ";
           cin>>choice;
for(int i=choice-1;i>=0;i--)
           {
for(int j=0;j<=i;j++) 
                    {
cout<<"*";
}
cout<<endl;
}
getch();
return 0;
}

Output




No comments:

Post a Comment

Python Program to find Fabonacci

fabtab={} def fabonacci(n):     fabtab[0]=0     fabtab[1]=1     for i in range(2,n+1):         fabtab[i]=fabtab[i-1]+fabtab[i-2]         ...