Android is a software stack for mobile devices that includes an operating system, middleware and key applications. The Android SDK provides the tools and APIs necessary to begin developing applications that run on Android-powered devices.
This site provides information about Google projects based on the Android platform, such as external libraries that extend the Android platform, Android applications, hosted services and APIs, the Android Developer Contest, and more. Everything on this site is provided by Google for the benefit of Android developers.
If you are looking for general information about Android, please visit the www.android.com site. If you are interested in developing applications for Android devices, please visit the Android Developers site at developer.android.com
[ Read More ]
Posted in
Label:
Download,
Miscellaneous,
Programming Language
Diposting oleh
Alexander Rahardjo
National Programming Contest (NPC)
[ENG]
As a means to introduce students to computer technology and the ability to test in the field of programming, Computer Engineering Students' Association - Information Ten Nopember Institute of Technology Surabaya (ITS HMTC) activities National Programming Contest. This activity is one of a series of events held by Schematics ITS HMTC that each year can run smoothly and successfully.
[IND]
Sebagai sarana untuk mengenalkan teknologi komputer pada pelajar serta untuk menguji kemampuan di bidang pemrograman, Himpunan Mahasiswa Teknik Computer – Informatika Institut Teknologi Sepuluh Nopember Surabaya (HMTC ITS) mengadakan kegiatan National Programming Contest. Kegiatan ini merupakan salah satu rangkaian acara Schematics yang diadakan oleh HMTC ITS yang setiap tahunnya dapat berjalan lancar dan sukses.
Bentuk Kompetisi dan Tanggal-tanggal PentingBeberapa tahapan yang akan dilalui pada kontes ini adalah:
[ENG]
- Registration: August 17 - September 17, 2009
- Warming Up Round: October 24, 2009
- First Round: October 24, 2009
- Announcement of Finalists: November 1, 2009
- Final Round: November 15, 2009
[IND]
- Pendaftaran : 17 Agustus – 17 September 2009
- Babak Warming Up : 24 Oktober 2009
- Babak Penyisihan : 25 Oktober 2009
- Pengumuman Finalis : 1 November 2009
- Babak Final : 15 November 2009
Fasilitas dan Hadiah
[ENG]
[IND]
Keterangan lain dapat dilihat pada
NPC official site dan
NPC Facebook pagePendaftaran telah di buka, anda dapat mendaftar di
NPC registration
[ Read More ]
Posted in
Label:
Contest,
Lomba
Diposting oleh
Alexander Rahardjo
Scratch is a new programming language that makes it easy to create your own interactive
stories, animations, games, music, and art -- and share your creations on the web.
Scratch is designed to help young people (ages 8 and up) develop 21st century learning skills. As they create Scratch projects, young people learn important mathematical and computational ideas, while also gaining a deeper understanding of the process of design.
Scratch is developed by the Lifelong Kindergarten group at the MIT Media Lab, in collaboration with the UCLA Graduate School of Education and Information Studies, with financial support from the National Science Foundation, Intel Foundation, and MIT Media Lab research consortia.
Scratch is available free of charge, go to Download.
Currently available for Mac OSX and Windows ( system requirements)
To find more about the ideas underlying Scratch, visit our page for Educators.
To learn how to use Scratch, go to Support.
To read research papers on Scratch, see Research .
To find out who is working on Scratch, see the Credits.
To read what people are saying about Scratch, see Quotes.
To hear the latest Scratch news stories, visit News.
adopted form: http://scratch.mit.edu
[ Read More ]
Posted in
Label:
Download,
Miscellaneous,
Programming Language
Diposting oleh
Alexander Rahardjo
There is a program for Fibonacci Number normal and abnormal
/*Fibonacci Number
author http://www.programming-codes.co.cc*/
import java.util.*;
class Fibonacci{
public static void main(String args[]){
int a,b,c,input;
Scanner read = new Scanner(System.in);
a=0;
b=1;
c=1;
System.out.print(" *Program Fibonacci Normal dan Tak Normal*\n\n");
System.out.print("Masukkan banyaknya deret fibonacci= ");
input = read.nextInt();
System.out.print("Deret Fibonacci Normal= ");
for(int i=1;i<=input;i++){
System.out.print(c+" ");
c = a+b;
a = b;
b = c;
}
a=0;
b=1;
c=1;
System.out.print("\nDeret Fibonacci Tak Normal= ");
for(int i=1;i<=input;i++){
if (i % 2 == 0)
{
c=c*(-1);
}
else
{
c=c*1;
}
System.out.print(c+" ");
c = a+b;
a = b;
b = c;
}
System.out.println();
}
}
Download the code here
[ Read More ]
Posted in
Label:
Download,
Java language,
Source Code
Diposting oleh
Alexander Rahardjo
There is a program for Fibonacci Number normal and abnormal
#include "stdio.h"
#include "conio.h"
int main(void)
{
int a,b,c,i,input;
a=0;
b=1;
c=1;
printf("Masukkan banyaknya deret fibonacci= ");
scanf("%d",&input);
printf("Deret Fibonacci= ");
for (i=1;i<=input;i++)
{
printf("%d ",c);
c=a+b;
a=b;
b=c;
}
getch();
return (0);
}
Download the code here
[ Read More ]
Posted in
Label:
C language,
Download,
Source Code
Diposting oleh
Alexander Rahardjo
In mathematics, the Fibonacci numbers are a sequence of numbers named after Leonardo of Pisa, known as Fibonacci. Fibonacci's 1202 book Liber Abaci introduced the sequence to Western European mathematics, although the sequence had been previously described in Indian mathematics.[2][3]
The first number of the sequence is 0, the second number is 1, and each subsequent number is equal to the sum of the previous two numbers of the sequence itself. In mathematical terms, it is defined by the following recurrence relation:
- 1. \\ \end{cases} " src="http://upload.wikimedia.org/math/7/6/f/76f99713cf111eb035d908228c351710.png">
That is, after two starting values, each number is the sum of the two preceding numbers. The first Fibonacci numbers (sequence A000045 in OEIS), also denoted as Fn, for n = 0, 1, 2, … ,20 are:[4][5]
-
F0 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | F13 | F14 | F15 | F16 | F17 | F18 | F19 | F20 |
0 | 1 | 1 | 2 | 3 | 5 | 8 | 13 | 21 | 34 | 55 | 89 | 144 | 233 | 377 | 610 | 987 | 1597 | 2584 | 4181 | 6765 |
Every 3rd number of the sequence is even and more generally, every kth number of the sequence is a multiple of Fk.
The sequence extended to negative index n satisfies Fn = Fn−1 + Fn−2 for all integers n, and F−n = (−1)n+1Fn:
.., −8, 5, −3, 2, −1, 1, followed by the sequence above.
[ Read More ]
Posted in
Label:
Algorithm
Diposting oleh
Alexander Rahardjo