SIZ Education || Program of C++ || by @ahsansharif

in hive-181430 •  4 years ago 

Assalam-u-Alikum!

I hope all SIZ family is well and good. Now I am sharing C++ program. I hope this is more beneficial for IT and CS students.

image.png

So here I show some program of C++.

(01) Find maximum value using C++.

#include
using namespace std;
int main()
{
int i, a[10], max;
cout<<"please enter an array of 10 elements :";
for(i=0; i<10; i++)
{
cout<<i+1<<"please enter number :";
cin>>a[i];
}
max=a[0];
for(i=0; i<10; i++)
if(max<a[i])
max = a[i];
cout<<"the maximum number :"<<max;
return 0;
}

OUTPUT

01.PNG

Divider 2.png

(02) Find Even Number using C++

#include
using namespace std;
int main()
{
int i,s,e;
cout<<"please enter strating value =";
cin>>s;
cout<<"please enter ending value =";
cin>>e;
for(i=2; i<=10; i+=2)
cout<<i<<" ";
}

OUTPUT

002.PNG

Divider 2.png

(03) Find odd number using C++

#include
using namespace std;
int main()
{
int i,s,e;
cout<<"please enter strating value =";
cin>>s;
cout<<"please enter ending value =";
cin>>e;
for(i=2; i<=10; i++)
if(i%2==1)
cout<<i<<" ";
}

OUTPUT

03.PNG

NOTE:

I didn't write iostream next to #include because it's an HTML symbol that doesn't post on steemit.

Divider 2.png

I am very thankful sir @cryptokraze who gave a chance to make post about anything related steemit.

1620475447469.png

Divider 1.png

Regards: @ahsansharif

Footer.png

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Good its very helpful for us. programming is so tough. If we learn it carefully then its so easy.

Yes you are right

good work bro.
keep it up.

Thanks bro

welcome dear

Very informative post .Good work. Keep it up

Thanks

very informative and easy for cs students and also for beginners that want to learn c++

Yes you are right thanks for participation

Thanks for sharing a C++ program. Its very beneficial for us.

welcome dear yes right

Its better for CS and IT students

of course

Thanks for sharing . I love coding

wow you love coding

Your post is very informative

thanks for participating

Very informative post good work bro.