Wednesday, September 26, 2012

SITE CREATE A FREE BLOG

INPUT/OUTPUT COMMAND AT C++

 OUTPUT COMMAND
1.      printf()
form of writing:
      printf(“my name’s is Yuni Setyowati”);
2.      cout()
form of writing:
cout<<”my name’s is Yuni Setyowati “;

3.      puts()
4.      form of writing:
puts(“my name’s is Yuni Setyowati”);

5.      putchar()
form of writing:
putchar(‘A’);
putchar(‘K’);
putchar(‘U’);
INPUT COMMAND
1.      scanf()
form of writing :
scanf(“%s”, &nama);

2.      cin()
fomy of writing:
cin>>name;

3.      gets()
form of writing:
gets(name);

4.      getch()
form of writing:
getch();

5.      getche()
form of writing:
getche();

HOW TO ADD MUSIC TO THE BLOG

Bored with the look of the blog is monotone??
There are many ways to add music or backsound on our blog.I will provide one easy way to add
music on our blog.
*   First, log in to your blog
*   Then click "ADD A GADGET"
*   This will bring up a dialog box, click the "+" in "HTML / JavaScript" then it will appear to fill the HTML code music player that we will enter.
*   In the meantime, open a new tab
*   Open a web address www.fullmusik.co.cc
*   Select the first song you want to add to your blog
*   When finished selecting, copy the HTML code listed on the music website
*   Then go back to look at your blog and click "PASTE" on a blank page
*   Click on save
By itself you can enjoy the song automatically when you open the blog meets these

+--------------GOOD LUCK-----------------+

HOW TO MAKE A NEW BLOG


Want a blog?? But do not get to do?. Hmm,,,, Lots of sites offer to create a blog site that free.Blogger is one of the sites to create a free blog, the site is also easy for beginners because it is easy to understand.
Here are the steps to create a new blog on Blogger:
*   Click the link www.blogger.com
*   If the above link is open, then click "Get Started" to start a blog
*   There are 3 step to make the first blog.Step the "Create Account or create an account". In this step enter your email address (email address must actually exist), and complete list data.Check "Term of Service Agreement"
*   Once completely filled out, click "Continue or Continue" at the bottom right corner.
*   You will go to step 2 of "Give your blog a name or name your blog" .. this is the name which will be published to your blog address to your friends.
*   When finished, click "Continue or Continue" to go to step 3
*   Choose one of the standard template you want to.
*   Click OK
*   Click continue
*   Wait until the browser displays the words "Your Blog Has Been Created" ..
*   Your new blog is finished ..
**********************GOOD LUCK*********************



HOW TO MAKE STAR FALL FROM THE POINTER


For who wants to modify the blog so it looks more dancing, here's how to make the stars fall from the pointer to beautify the look of your blog
*    First, login to your blog
*    Then go to "Settings" and select "Add Gadget", then the dialog box will appear in a new window
*    Choose HTML / JavaScript
*    Then it will appear to fill a JavaScript pointer stars that fall on
*    Enter the following code:

<script type=’text/javascript’>
// <![CDATA[
var colour="#52D8ED";
var sparkles=100;
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor=”transparent”;
rats.style.visibility=”hidden”;
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top=”3px”;
rlef.style.left=”0px”;
rdow.style.top=”0px”;
rdow.style.left=”3px”;
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+”px”;
star[c].style.top=(stary[c]=y)+”px”;
star[c].style.clip=”rect(0px, 5px, 5px, 0px)”;
star[c].style.visibility=”visible”;
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout(”sparkle()”, 40);
}
function update_star(i) {
if (–starv[i]==25) star[i].style.clip=”rect(1px, 4px, 4px, 1px)”;
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+”px”;
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+”px”;
}
else {
star[i].style.visibility=”hidden”;
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+”px”;
tiny[i].style.left=(tinyx[i]=starx[i])+”px”;
tiny[i].style.width=”2px”;
tiny[i].style.height=”2px”;
star[i].style.visibility=”hidden”;
tiny[i].style.visibility=”visible”
}
}
function update_tiny(i) {
if (–tinyv[i]==25) {
tiny[i].style.width=”1px”;
tiny[i].style.height=”1px”;
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+”px”;
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+”px”;
}
else {
tiny[i].style.visibility=”hidden”;
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility=”hidden”;
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)==”number”) {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)==”number”) {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement(”div”);
div.style.position=”absolute”;
div.style.height=height+”px”;
div.style.width=width+”px”;
div.style.overflow=”hidden”;
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>
*    Click Save, then the effect of shooting stars will appear on your blog..
+---------------------GOOD LUCK--------------------+