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.
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
(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
(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
NOTE:
I didn't write iostream next to #include because it's an HTML symbol that doesn't post on steemit.
I am very thankful sir @cryptokraze who gave a chance to make post about anything related steemit.
Regards: @ahsansharif
Good its very helpful for us. programming is so tough. If we learn it carefully then its so easy.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yes you are right
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
good work bro.
keep it up.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks bro
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
welcome dear
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Very informative post .Good work. Keep it up
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
very informative and easy for cs students and also for beginners that want to learn c++
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yes you are right thanks for participation
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for sharing a C++ program. Its very beneficial for us.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
welcome dear yes right
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Its better for CS and IT students
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
of course
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for sharing . I love coding
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
wow you love coding
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Your post is very informative
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks for participating
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Very informative post good work bro.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit