ghfghfghgfh
hfjdshfdsfjhfdsjfkjs
#include<iostream.h>
#include<conio.h>
void main()
{
//clear the screen.
clrscr();
//declare variable type int
int a[3][3],b[3][3],i,j,k,s;
//Input the numbers of first matix
cout<<"First Matrix"<<endl;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cout<<"Enter number :";
cin>>a[i][j];
}
}
//Input the numbers of second matix
cout<<"Second Matrix"<<endl;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cout<<"Enter number :";
cin>>b[i][j];
}
}
//display the multipication of matrices
cout<<"Multiplication is"<<endl;
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
for(k=0;k<3;k++)
s=s+a[i][k]*b[k][j];
cout<<s<<"/t";
s=0;
}
cout<<endl;
}
//get character
getch();
}
1: #include<iostream.h>
2: #include<conio.h>
3: void main()
4: {
5: //clear the screen.
6: clrscr();
7: cout<<"hello world ";
8: getch();
9: }
1: #include<iostream.h>
2: #include<conio.h>
3: void main()
4: {
5: //clear the screen.
6: clrscr();
7: //declare variable type int
8: int a[3][3],b[3][3],i,j;
9: //Input <span class="IL_AD" id="IL_AD5">the numbers</span> <span class="IL_AD" id="IL_AD8">of first</span> matix
10: cout<<"First Matrix"<<endl;
11: for(i=0;i<3;i++)
12: {
13: for(j=0;j<3;j++)
14: {
15: cout<<"Enter number :";
16: cin>>a[i][j];
17: }
18: }
19: //Input the numbers of <span class="IL_AD" id="IL_AD6">second</span> matix
20: cout<<"Second Matrix"<<endl;
21: for(i=0;i<3;i++)
22: {
23: for(j=0;j<3;j++)
24: {
25: cout<<"Enter number :";
26: cin>>b[i][j];
27: }
28: }
29: //display the sum of matrices
30: cout<<"Sum is"<<endl;
31: for(i=0;i<3;i++)
32: {
33: cout<<"\n";
34: for(j=0;j<3;j++)
35: {
36: cout<<a[i][j]+b[i][j]<<"t";
37: }
38: cout<<endl;
39: }
40: //get character
41: getch();
42: }
File Size: 6.83 MB
License: Freeware
Price: FREE
<div class="widget ContactForm" id="ContactForm1">
<div class="contact-form-widget">
<div class="form">
<form name="contact-form">
<div>
Your Name : </div>
<input class="contact-form-name" id="ContactForm1_contact-form-name" name="name" size="30" type="text" value="" />
<div>
Your Email: <i>(required)</i></div>
<input class="contact-form-email" id="ContactForm1_contact-form-email" name="email" size="30" type="text" value="" />
<div>
Your Message: <i>(required)</i></div>
<textarea class="contact-form-email-message" id="ContactForm1_contact-form-email-message" name="email-message" rows="5"></textarea> <input class="contact-form-button contact-form-button-submit" id="ContactForm1_contact-form-submit" type="button" value="Send" />
<div style="max-width: 450px; text-align: center; width: 100%;">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
.contact-form-widget {
width: 500px;
max-width: 100%;
margin: 0 auto;
padding: 10px;
background: #F8F8F8;
color: #000;
font-family: Goudy Old Style;
font-size:18px;
border: 1px solid #C1C1C1;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
}
/* Fields and submit button */
.contact-form-name {
background: white;
border: 1px solid #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #DDD inset;
color: #666;
outline: none;
height:25px;
width: 300px;
}
.contact-form-name:hover{
background: white;
border: 1px solid #ffa853;
border-radius: 5px;
box-shadow: 0 0 5px 3px #ffa853;
color: #000;
outline: none;
}
.contact-form-name:focus{
outline: none;
border: 1px solid #7bc1f7;
box-shadow: 0px 0px 8px #7bc1f7;
-moz-box-shadow: 0px 0px 8px #7bc1f7;
-webkit-box-shadow: 0px 0px 8px #7bc1f7;
}
.contact-form-email {
background: white;
border: 1px solid #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #DDD inset;
color: #666;
outline: none;
height:25px;
width: 300px;
}
.contact-form-email:hover {
background: white;
border: 1px solid #ffa853;
border-radius: 5px;
box-shadow: 0 0 5px 3px #ffa853;
color: #000;
outline: none;
}
.contact-form-email:Focus{
outline: none;
border: 1px solid #7bc1f7;
box-shadow: 0px 0px 8px #7bc1f7;
-moz-box-shadow: 0px 0px 8px #7bc1f7;
-webkit-box-shadow: 0px 0px 8px #7bc1f7;
}
.contact-form-email-message {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
background: white;
border: 1px solid #DDD;
border-radius: 5px;
box-shadow: 0 0 5px #DDD inset;
color: #666;
outline: none;
}
.contact-form-email-message:hover {
background: white;
border: 1px solid #ffa853;
border-radius: 5px;
box-shadow: 0 0 5px 3px #ffa853;
color: #000;
outline: none;
}
.contact-form-email-message:focus {
outline: none;
border: 1px solid #7bc1f7;
box-shadow: 0px 0px 8px #7bc1f7;
-moz-box-shadow: 0px 0px 8px #7bc1f7;
-webkit-box-shadow: 0px 0px 8px #7bc1f7;
}
/* Submit button style */
.contact-form-button-submit {
border-color: #C1C1C1;
background: #E3E3E3;
color: #585858;
width: 20%;
max-width: 20%;
margin-bottom: 10px;
}
/* Submit button on mouseover */
.contact-form-button-submit:hover{
background: #4C8EF9;
color: #ffffff;
border: 1px solid #FAFAFA;
}
<div id='mydate'>
<script type='text/javascript'>
/*<![CDATA[*/
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write(""+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"")
/*]]>*/
</script>
#mydate {
color: #ffffff;
display: inline-block;
float: right;
font-size: 14px;
padding: 4px 10px;
font-family: 'Bree Serif', serif;
}
#mydate a {
background: none repeat scroll 0 0 #333333;
color: #ffffff;
font-family: sans-serif;
font-weight: bolder;
padding: 13px 16px 16px;
}
<b:includable id='status-message'>
<b:includable id='status-message'>
<b:if cond='data:navMessage'><div>
</div>
<div style='clear: both;'/>
</b:if>
</b:includable>