C# program code;
if (hours <=40)
{
pay = rate * hours;
}
else
{
extra_hours = hours - 40;
pay = 40*rate + extra_hours *rate*1,5;
}
indexes should be used when working figures which have large tables
The web pages contain a special kind of text that allowed to respond to the user input is termed hypertext.
<h3>What are web pages?</h3>
The web pages are given as the web server delivery with the displaying of the web browser. It is given with the HTML language and comprises several resources and information.
The web page document is accessed with the presence of the hypertext or the hyperlink that enables the user selection to respond to it.
Learn more about web pages, here:
brainly.com/question/9060926
#SPJ1
Answer:
A program that implement a bubble sort:
#include<iostream.h>
#include<conio.h>
int main()
{
int ar[50],no,i,j,temp;
cout<<"Enter array size ";
cin>>no;
cout<<"Enter array elements ";
for(i=0;i<no;++i)
cin>>ar[i];
for(i=1;i<no;++i)
{
for(j=0;j<(no-i);++j)
if(ar[j]>ar[j+1])
{
temp=ar[j];
ar[j]=ar[j+1];
ar[j+1]=temp;
}
}
cout<<"Bubble Sort array";
for(i=0;i<no;++i)
cout<<" "<<ar[i];
return 0;
}