free registration html

PERTEMUAN 8 FREE REGISTRATION

Latihan atau tugas Free Registration NAMA : Tgl Lahir: Alamat : Kota : Pekerjaan: Programer Data ANALISIS IT Su...

Selasa, 23 September 2025

Claim Free Litecoin Daily - Earn Free LTC on ClaimFreeBTC and Withdraw to FaucetPay

 If you’re curious about collecting small amounts of Litecoin without buying any, faucets are an easy way to start. ClaimFreeBTC is a faucet-style roll game where you can make daily claims and win tiny LTC rewards — sometimes as little as micro-fractions, and occasionally much larger prizes. Use this referral to get started: https://earnfreelite.com/index.php?ref=215977



How ClaimFreeBTC Works (Quick overview)


1. Visit the site using the link above.



2. Register or sign in if required (some faucets only need a wallet/FaucetPay address).



3. Complete any on-page verification (Cloudflare captcha, timer, etc.).



4. Click Roll to generate a number and win the corresponding LTC reward.



5. Repeat the claim as allowed (the site displays your claims used and reset timer).



6. When you reach the site’s minimum, withdraw instantly to FaucetPay to consolidate micro-earnings.


Example Rewards (what you might see)


On the roll prize table, payouts typically follow a tiered model. Example (from the site UI):


Roll 1 – 99,900 → 0.000005 LTC


Roll 99,910 – 99,950 → 0.00005 LTC


Roll 99,960 – 99,990 → 0.0001 LTC


Roll 100,000 → 3.0 LTC (jackpot)



Small rewards are common; jackpots are rare but possible. The UI also shows your balance (e.g., ~9.99917500 LTC), number of claims used (e.g., 1/10), and next reset countdown.


Tips to Maximize Earnings


Claim consistently every day to collect more over time.


Use FaucetPay as your hub — it prevents tiny on-chain fees from eating your earnings.


Check the claims/reset counter so you don’t miss your allowed rolls.


Don’t use bots or automation — most faucets prohibit automation and it can lead to bans.


Consider claiming from multiple reputable faucets to aggregate more LTC into FaucetPay before withdrawing.

Senin, 28 Maret 2022

Pertemuan 1 Instalasi Android Studio

 


untuk mendownload Aplikasi Android Studio bisa di download dengan masuk ke link berikut 

klik di sini


            1. Download Android Studio

2. Install Android Studio


3. Pilih Komponen Tambahan

4. Tentukan Lokasi Instalasi



                                            5. Tentukan Nama Aplikasi Android Studio



                                                    6. Mulai Proses Instalasi







                                                7. Pilih Tampilan Android Studio



                                          9. Pilih Komponen SDK Tambahan




                                    10. Tentukan RAM untuk Emulator



                                            11. Review Pengaturan Instalasi




                                12. Proses Download dan Install SDK Android Studio









                                Setelah proses download dan install selesai, akan muncul tampilanseperti gambar di bawah ini.


Selasa, 01 Februari 2022

luas persegi panjang

 #include <iostream>

using namespace std;

 

int main()

{

    int bil, i;

    bool Prima = true;

 

    cout << "Masukan bilangan bulat positif: ";

    cin >> bil;

 

    for(i = 2; i <= bil / 2; ++i)

    {

        if(bil % i == 0)

        {

            Prima = false;

            break;

        }

    }

     

    if (Prima)

        cout << "Bilangan tersebut adalah bilangan prima.";

    else

        cout << "Bilangan tersebut bukan bilangan prima.";

 

    return 0;

}

for

 #include <stdio.h>

main()

{

clrscr();

int x;

for(x=1;x<10+0;x++)

{

cout<<x<<endl;

}

getch();

}

tugas pertemuan 2

 #include <iostream>

#include <conio.h>

using namespace std;


int main ()

{

int Nilai [10];

int i, Jumlah =0;

float Rata_Rata;

    cout<<"Tugas Pertemuan 2"<<endl;

cout<<"Nama :Muhamad Husni Ramadhan"<<endl;

cout<<"Nim  :191011400011"<<endl;

cout<<endl;

for (i=0 ;i<10;i++)

{

cout<<"Masukan Elemen Ke-"<<i<<"=";

cin>>Nilai[i];

Jumlah+=Nilai[i];

}

Rata_Rata=(float)Jumlah/10;

    cout<<"\n\n Deretan Bilangan =";

{

cout<<Nilai[i]<<"";

}

    cout<<"\n Jumlah Bilangan ="<< Jumlah;

    cout<<"\n Rata-Rata Bilangan ="<<Rata_Rata;

    getch ();

    

}

tugas akhir pertemuan 11

//OFFICIALDANS.K.BLOGSPOT.COM WEDDING AND FOTOGRAFI

#include<iostream>

#include<iomanip>

#include<stdio.h>

using namespace std;

struct Employee_str

{

 char ID[20],Name[25],status[15];

 int anak,gaji;

 char jmlh[2];

};

int main()

{

printf("NAMA : MUHAMAD HUSNI RAMADHAN\n");

  printf("NIM  : 191011400011          \n");

printf("KELAS: 02TPLE002             \n");

 Employee_str employee[6];

 int loop;

 for(loop=1;loop<6;loop++)

 {

  cout<<"Data Karyawan   1, 2, 3, ..    : ";

  cin.getline(employee[loop].jmlh,80.);

  cout<<"ID Karyawan                    : ";

  cin.getline(employee[loop].ID,80.);

  cout<<"Nama Karyawan                  : ";

  cin.getline(employee[loop].Name,80.);

  cout<<"Gaji/Bulan                     : ";

  cin>>employee[loop].gaji;

  cin.ignore(80,'\n');

  cout<<"Status (Menikah/Belum Menikah) : ";

  cin.getline(employee[loop].status,80);

  cout<<"Anak (0, / 1, 2, 3, ..)        : ";

  cin>>employee[loop].anak;

  cin.ignore(80,'\n');

  cout<<endl;

 }

  cout<<"Data Karyawan : ";

  cout<<endl;

  cout.flags(ios::left);

  cout<<setw(0)<<"No "<<"ID karyawan"<<" Nama "<<" Gaji "<<"  Status "<<"  Anak";

  cout<<endl;

  cout<<"================================================";

  cout<<endl;

  for(loop=1;loop<6;loop++)

 {

  cout<<setiosflags(ios::left)<<setw(5)<<loop;

  cout<<setiosflags(ios::left)<<setw(10)<<employee[loop].ID;

  cout<<setiosflags(ios::left)<<setw(10)<<employee[loop].Name;

  cout<<setiosflags(ios::left)<<setw(10)<<employee[loop].gaji;

  cout<<setiosflags(ios::left)<<setw(20)<<employee[loop].status;

  cout<<setiosflags(ios::left)<<setw(12)<<employee[loop].anak;

  cout<<endl;

 }

 cout<<endl;

 return 0;

}

tugas akhir pertemuan 4

 #include<iostream>

using namespace std;

main()

{

    

        cout<<" NAMA  : MUHAMAD HUSNI RAMADHAN"<<endl;

        cout<<" NIM   : 191011400011          "<<endl;

        cout<<" KELAS : 02 TPLE 002           "<<endl;

    int harga;

        cout<<" Masukan Total Pembelian : Rp."; cin>>harga;

    switch(harga)

    {

        case 100000 ... 199999:

            int dis, t;

            dis=harga*0.05;

            t=harga-dis;

            cout<<"Anda Mendapat Potongan Sebesar : Rp."<<dis;

            cout<<" Total Yang Harus Dibayar : Rp."<<t; break;

        case 200000 ... 299999:

            cout<<"BONUS ANDA : TIKET KE YOGYA"; break;

        case 300000 ... 399999:

            cout<<"BONUS ANDA : TIKET KE BALI"; break;

        case 400000 ... 499999:

            cout<<"BONUS ANDA : JAM TANGAN ROLEX"; break;

        case 500000 ... 1000000:

            cout<<"BONUS ANDA : TIKET KE SWISS"; break;

    }

    return 0;

}