Napisz program w Dev-C++
Narysuj na ekranie trójkąt złożony z n gwiazdek (n>0)
Przykład 1Wejście:
5
Wyjście
*
**
***
****
*****
Wejście
7
Wyjście
*
**
***
****
*****
******
*******
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a,b,n;
cout<<"Podaj liczbe n:";
cin>>n;
n=n+2;
for (a=1;a<n;a++)
{
for (b=1;b<a;b++)
{
cout<<"*";
}
cout<<endl;
};
system("PAUSE");
return EXIT_SUCCESS;
}
#include<iostream>
using namespace std;
main(){
int ilosc;
cout << "Podaj ilosc gwiazdek: ";
cin >> ilosc;
for (int i = 0; i <= ilosc; i++){
for (int l = 0; l < i; l++){
cout << "*";
}
cout << endl;
}
cout << "\n\n";
system("pause");
}