Skip to content

Instantly share code, notes, and snippets.

View rifqire's full-sized avatar

Rifqi RE rifqire

  • Indonesia
  • 16:23 (UTC +07:00)
  • LinkedIn in/rifqire
View GitHub Profile
@rifqire
rifqire / 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;}
@rifqire
rifqire / 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];
@rifqire
rifqire / 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
@rifqire
rifqire / answer.md
Last active June 12, 2024 12:59
Jawaban Pre Assessment Software Engineer - Back End Ultra Voucher (Rifqi Rachmanda Eryawan)

No. 1 - Logic Test

let words = ['cook', 'save', 'taste', 'aves', 'vase', 'state', 'map']

function alphabeticalSort(str) {
  let charArray = []
  for (let i = 0; i < str.length; i++) {
    charArray.push(str[i])
  }