New to Steemit - About me

Hello Friends !

waji.jpg

My name is Wajahat jamil. I live in Abbottabad it is situated in Pakistan, there is a beautifull picture of my city Abbottabad covered in snow.

2_201212161212285726.jpg

I am the student of the software Engineering at Abbottabad university of science and technology (AUST), as i am the student of the software Engineering so my daily work is based on building and modifying applications on the the computer, laptop , cellphone etc . To be honent i am not soo good in it now but i am working hard on it.
I have a simple program in C++ language for you.

Pascal Triangle .

In mathematics, Pascal's triangle is a triangular array of the binomial coefficients. In much of the Western world, it is named after French mathematician Blaise Pascal, although other mathematicians studied it centuries before him in India, Persia (Iran), China, Germany, and Italy..

1853_Pascals_Triangle2000px-Pascal's_Triangle_rows_0-16.svg.jpg

#include< iostream >
using namespace std;

int main()
{
int rows;
cout << "Enter the number of rows : ";
cin >> rows;
cout << endl;

for (int i = 0; i < rows; i++)
{
    int val = 1;
    for (int j = 1; j < (rows - i); j++)
    {
        cout << "   ";
    }
    for (int k = 0; k <= i; k++)
    {
        cout << "      " << val;
        val = val * (i - k) / (k + 1);
    }
    cout << endl << endl;
}
cout << endl;
return 0;

}

You can also check my other programs on my Facebook Page ,link is given below.
https://www.facebook.com/pg/sardarwajahat99/posts/

I have some hobbies like photography, I really like photography because with photography we can capture the moment of our rare moments and perpetuate things we like, like how beautiful nature that is around us.

I love Plants , Roses and Animals so i have some pics that i got from internet.

flowers-background-butterflies-beautiful-87452.jpeg

My other hobby is to play cricket. I love cricket too much,Mohammad Amir is my fariout bowler and Brendon McCullum and Virat kohli is my favriout bestman.

Muhammad Amir.
mohammad-amir.jpg

Pakistan-xlarge_trans_NvBQzQNjv4BqqVzuuqpFlyLIwiB6NTmJwfSVWeZ_vEN7c6bHu2jJnT8.jpg

Virat Kohli.
india-the-virat-kohli-innings-the-end_04f664aa-49aa-11e7-88f6-6a3facb665a5.jpg

Virat-Kohli.jpg

Brendon McCullum
brendon-mccullum-nz.png

The worst hobby of mine is to play online game.
i like to play 8 ball pool.

8 ball.PNGHello Steemians!

if you want to play 8 ball poll click on this link given below.
https://apps.facebook.com/livepool

I hope you like it.
Follow and upvote.
Thanks !

Follow @wajahatsardar

Sort:  

its mine 6th day on steemit.. hehhehe :P

i like it. i m also in this field .

ohh its really awsome.

i like ur c++ program . follow me

i ,ll follow you thanks !

Same choices. And i am also from pakistan ❤

very well then bro keep your work up !!!

Coin Marketplace

STEEM 0.21
TRX 0.13
JST 0.030
BTC 67753.34
ETH 3502.65
USDT 1.00
SBD 2.82