napisz program w języku C++ wyświetlający n gwiazdek (n=liczba gwiazdek w poziomie, a później w następnym rzędzie o jedną gwiazdkęmniej)
np. n=4
****
***
**
*
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main(){
int n;
cin >> n;
for(int i=0;i<n;i++)
{
for(int j=i;j<n;j++) cout << "*";
cout << endl;
}
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int a,c=0;
cin >> a;
while(a!=0)
{
while (c<a)
{
cout << "*";
c++;
}
a--;
c=0;
cout << endl;
}
return 0;
}