Kamis, 03 November 2022

Tugas Kewarganegaraan Mekanisme Pembuatan Peraturan Perundang-Undangan Indonesia



Model Bisnis Netflix



Bisnis Model Canvas Netflix, Tugas kelompok E-bisnis



Tugas perancangan Basis Data Semeseter II



Program Fibonacci C++

 sebenarny ane juga lupa kenapa bikin ini waktu Semester I kemarin, yaudahlah terserah...


#include <iostream>
using namespace std;
int main()
{
//                                 _    
//                                (_)    
//     __ _ _ __   __ _  __ _ _ __ _    
//    / _` | '_ \ / _` |/ _` | '__| |    
//   | (_| | | | | (_| | (_| | |  | |    
//    \__,_|_|_|_|\__, |\__, |_|  |_|    
//   | |     | |   __/ | __/ |          
//   | |_   _| | _|___/ |___/ __ _ _ __  
//   | | | | | |/ / '_ ` _ \ / _` | '_ \
//   | | |_| |   <| | | | | | (_| | | | |
//   |_|\__,_|_|\_\_| |_| |_|\__,_|_| |_|
//                                      
//                                      
cout<<"        PROGRAMED BY : ANGGRI LUKMAN DJATTA                 "<<endl;
    int n;
    int f_n;
    int f_n1;
    int f_n2;
   
    cout << " program fibonacci \n";
    cout << " masukan nilai n :  ";
    cin >> n;
   
    f_n1 = 1;
    f_n2 = 0;
    cout << f_n1 << " ";
    f_n + f_n1 + f_n2;
    for(int i =1; i < n; i++){
        f_n = f_n1 + f_n2;
        f_n2 = f_n1;
        f_n1 = f_n;
       
        cout << f_n << " ";
    }
    cout<<endl<<endl;
    cout << "akhir dari program ";
   
    cin.get();
    return 0;
       
}

Program Konversi Suhu sederhana C++

 semoga tidak bermanfaat untukmu wahai para pemalas


#include<iostream>
#include<conio.h>
using namespace std;


float farenheit(float c){
    float farenheit=1.8*c;
    return farenheit;
}
float reamur(float c){
    float reamur=0.8*c;
    return reamur;
}
float kelvin(int c){
    float kelvin=273*c;
    return kelvin;
}
   
int main()

{

cout<<"         KONVERSI SUHU DARI CELCIUS KE           "<<endl;
float c;
cout<<"masukan suhu dalam celcius = "<<endl;cin>>c;

cout<<"                HASIL KONVERSI                   "<<endl;

{
cout<< farenheit(c)<< endl;
}
{
cout<<reamur(c)<< endl;
}
{
cout<<kelvin(c)<< endl;
}

}


Program C++ untuk mengukur nilai Mahasiswa tidak ramah

 harap ganti beberapa captionnya ya kawan kawan, karena kalo copas langsung nanti ente di bilang tydac ramah terhadap dosen

#include <iostream>
using namespace std;
 int main() {
int nilai = 1;  
cout<<"\n PROGRAM PENGUKUR KECERDASAN MAHASISWA "<<'\n';
cout<<"\n PROGRAMER : ANGGRI LUKMAN "<<'\n';
    cout<<"\n masukan nilai anda= ";cin>>nilai;
    if (nilai >=0 && nilai <= 25) {
        cout << "setara dengan kecerdasan timun laut" << endl;
     } else if (nilai >=25 && nilai <= 40) {
        cout << "tidak lebih pintar dari amoeba"<< endl;
    } else if (nilai >=40 && nilai <= 50) {
        cout << "setingkat di bawah kecerdasan kalkulator sayur"<< endl;
     } else {
        cout << "cukup anda mungkin perlu tidur"<<endl;
         }
cout<<"\n kurang puas? coba masukan lagi= ";cin>>nilai;
    if (nilai >=0 && nilai <= 25) {
        cout << "setara dengan kecerdasan timun laut" << endl;
     } else if (nilai >=25 && nilai <= 40) {
        cout << "tidak lebih pintar dari amoeba"<< endl;
    } else if (nilai >=40 && nilai <= 50) {
        cout << "setingkat di bawah kecerdasan kalkulator sayur"<< endl;
     } else {
        cout << "salah masukan cokkk"<<endl;
         }
cout<<"\n ayo berjuang coba lagi = ";cin>>nilai;
    if (nilai >=0 && nilai <= 25) {
        cout << "setara dengan kecerdasan timun laut" << endl;
     } else if (nilai >=25 && nilai <= 40) {
        cout << "tidak lebih pintar dari amoeba"<< endl;
    } else if (nilai >=40 && nilai <= 50) {
        cout << "setingkat di bawah kecerdasan kalkulator sayur"<< endl;
     } else {
        cout << "cukup anda mungkin perlu tidur"<<endl;
         }
cout<<"\n mau coba kesempatan terakhir? "<<'\n';
cout<<"\n Masukan nilai = ";cin>>nilai;
    if (nilai >=0 && nilai <= 25) {
        cout << "setara dengan kecerdasan timun laut" << endl;
     } else if (nilai >=25 && nilai <= 40) {
        cout << "tidak lebih pintar dari amoeba"<< endl;
    } else if (nilai >=40 && nilai <= 50) {
        cout << "setingkat di bawah kecerdasan kalkulator sayur"<< endl;
     } else {
        cout << "jangan berkhayal punya nilai setinggi itu"<<endl;
        cout << "anda mungkin perlu lebih banyak tidur"<<endl;
         }
 }