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>
<div class='head_brnews'>
<div class='breaking-news'>
<div class='samazhlo'>
Latest Post
</div>
<script src='https://dl.dropboxusercontent.com/u/80436322/autoscroll.js' type='text/javascript'/>
<script type='text/javascript'>
var nMaxPosts =8;
var nWidth = 100;
var nScrollDelay = 120;
var sDirection = "left";
var sOpenLinkLocation = "N";
var sBulletChar = ">>";
</script>
<script src='/feeds/posts/default?alt=json-in-script&callback=RecentPostsScrollerv2&max-results=6' type='text/javascript'/>
</div>
</div>
.head_brnews{
height:30px;
background:#fff;
width:100%;
max-width:1160px;
margin:15px auto;
border-style: solid ;
border-width: 1px;
border-color: #0080ff;
overflow: hidden;
width: 955px;
margin-top:15px;
}
.breaking-news{
float:left;
height:30px;
position:relative;
overflow:hidden;
margin-bottom:20px;
}
.breaking-news {
background: #fff;
display:block;
float:left;
padding:0 10px;
height:32px;
line-height:30px;
color:#000;
font-family: Oswald,arial,Georgia,serif;
text-transform:uppercase;
font-size:15px;
margin-right:10px
}
.breaking-news ul{
float:left
}
.breaking-news a:hover{
color:#333;
}
.breaking-news ul li{
float:left;
display:block;
list-style:none;
}
.breaking-news ul a{
padding:1px;
display:block;
color:#333;
white-space:nowrap;
float:left;
line-height:30px;
font-size:15px;
font-family: 'Droid Serif', serif;
display:hidden;
}
.breaking-news span{
display:block;
float:left;
padding:1px 10px;
color:#333;
font-size:15px;
line-height:30px;
}
.samazhlo{
background:#4371CF;
position:absolute;
left:0;
padding: 0 20px;
height: 32px;
line-height: 30px;
color: #FFF;
font-family: 'Yanone Kaffeesatz', sans-serif;
text-transform: uppercase;
font-size: 20px;
margin-right: 10px;
}
Developed by Tim Berners-Lee in 1990, HTML is short for HyperText Markup Language and is a language used to create electronic documents, especially pages on the World Wide Web that contain connections called hyperlinks to other pages. Every web page you see on the Internet, including this one contains HTML code that helps format and show text and images in an easy to read format. Without HTML a browser would not know how to format a page and would only display plain text with no formatting that contained no links. Below is an example of a basic web page in HTML code. <!DOCType HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en"><head>
<title>Example page</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<body>
<h1>This is a heading</h1>
<p>This is an example of a basic HTML page.</p>
</body></html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example</title>
</head>
<body>
<?php
echo "Hi, I'm a PHP script!";
?>
</body>
</html>
