using namespace std;
int main()
{
int n;
cout<<"n : ";
cin>>n;
for(int i=n; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
cout<<j<<" ";
}
cout<<endl;
}
}
Bu yazımızda sizlere spring boot ile yazılmış basit bir Rest api'nin heroku üzerinde nasıl deploy edebileceğimizi göstereceğim. Önce ...
Hiç yorum yok:
Yorum Gönder