Monday 5 January 2015

Contoh Script mengurutkan angka 0 sampai 10 dengan c++

#include<iostream.h>

main()
{
int i;

for (i = 0; i <= 10; i++)
{
cout<<i;
cout<<endl;
}
}


Download script Link1 / Link2


No comments:

Post a Comment