Skip to content

Instantly share code, notes, and snippets.

View chelseaislan's full-sized avatar
🌴
On vacation

Rifqi R chelseaislan

🌴
On vacation
View GitHub Profile
@chelseaislan
chelseaislan / quiz03sprifqi.cpp
Created February 10, 2018 14:06
A simple motorbike dealer program along with installments, created with C++ by Rifqi Rachmanda Eryawan. A Structured Programming project.
// Rifqi Rachmanda Eryawan
// 001201700004
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
int brand, price, ans; // type anything and press enter to quit
int subtotal, rate, installment, total, month, paymonth;
char response; // press N to checkout
@chelseaislan
chelseaislan / quiz02sprifqi.cpp
Last active February 10, 2018 14:09
A simple motorbike dealer program, created with C++ by Rifqi Rachmanda Eryawan. A Structured Programming project.
// Rifqi Rachmanda Eryawan
// 001201700004
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
int brand, price, ans;
char response;
char name[100];
@chelseaislan
chelseaislan / quiz01csiprifqi.html
Last active February 10, 2018 14:08
A simple food ordering website, created with HTML, CSS and JavaScript by Rifqi Rachmanda Eryawan. A CSIP project.
<!-- RIFQI RACHMANDA ERYAWAN - 001201700004 -->
<html>
<head>
<title>CSIP FOOD ORDER!</title>
<style type="text/css">
body {background-image: url("https://wallpapercave.com/wp/Dp3Xq6o.jpg");}
h1 {text-align: center; color: white; font-family: segoe ui; font-size: 50;}
p {color: white; font-family: segoe ui;}
hr {width: 100%; height: 20; border-color: white; background-color: white;}
td {font-family: segoe ui; font-size: 20; color: white; text-align: center;}