Dashboard Temp Share Shortlinks Frames API

demo - HTMLify profile

files of /demo/code/

Rock Paper Scissors Game in Kotlin /demo/code/RPS.kt
608 Views
0 Comments
import java.util.Random

fun main() {
val options = arrayOf("Rock", "Paper", "Scissors")

while (true) {
p
basic-webpage-structure.html /demo/code/basic-webpage-structure.html
662 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
<p>Th
calculate-area-of-rectangle.swift /demo/code/calculate-area-of-rectangle.swift
643 Views
0 Comments
let length = 5.0
let width = 3.0
let area = length * width
print("Area of the rectangle: \(area)")
calculate-sum-of-two-numbers.java /demo/code/calculate-sum-of-two-numbers.java
608 Views
0 Comments
public class SumCalculator {
public static void main(String[] args) {
int num1 = 5;
int num2 = 10;

calculating-factorial.cpp /demo/code/calculating-factorial.cpp
614 Views
0 Comments
#include <iostream>
using namespace std;

int factorial(int n) {
if (n <= 1)
return 1;
return n * factoria
check-leap-year.cpp /demo/code/check-leap-year.cpp
605 Views
0 Comments
#include <iostream>
using namespace std;

int main() {

int year;
cout << "Enter a year: ";
cin >> year;
check-odd-or-even.cpp /demo/code/check-odd-or-even.cpp
598 Views
0 Comments
#include <iostream>
using namespace std;

int main() {
int n;

cout << "Enter an integer: ";
cin >> n;
check-prime.cpp /demo/code/check-prime.cpp
648 Views
0 Comments
#include <iostream>
using namespace std;

int main() {

int i, n;
bool is_prime = true;

check-prime.js /demo/code/check-prime.js
285 Views
0 Comments
// program to check if a number is prime or not

// take input from the user
const number = parseInt(prompt("Enter a positive
creating-simple-table.sql /demo/code/creating-simple-table.sql
650 Views
0 Comments
CREATE TABLE Students (
StudentID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Age INT
);
display-date-and-time.html /demo/code/display-date-and-time.html
611 Views
0 Comments
const currentDate = new Date();
console.log(`Current Date and Time: ${currentDate}`);
display-date-and-time.js /demo/code/display-date-and-time.js
330 Views
0 Comments
const currentDate = new Date();
console.log(`Current Date and Time: ${currentDate}`);
hello-world.asm /demo/code/hello-world.asm
715 Views
1 Comments
section .data
hello db 'Hello, World!',0

section .text
global _start

_start:
; Write the string to stdout (
hello-world.cbl /demo/code/hello-world.cbl
500 Views
0 Comments
IDENTIFICATION DIVISION.
PROGRAM-ID. HelloWorld.
PROCEDURE DIVISION.
DISPLAY "Hello, World!".
STOP RUN.
hello-world.cobra /demo/code/hello-world.cobra
527 Views
0 Comments
class Hello

def main
print 'Hello, world.'
hello-world.cs /demo/code/hello-world.cs
643 Views
0 Comments
using System;

class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}
hello-world.go /demo/code/hello-world.go
620 Views
0 Comments
package main

import "fmt"

func main() {
fmt.Println("Hello, World!")
}
hello-world.i /demo/code/hello-world.i
698 Views
0 Comments
PLEASE,1<-#9:110DUP(205)DOCOMEFROM(9)ABSTAIN#34DUP(210)NEXT#44SUB#2(0)REM~#6
Hello World in Java /demo/code/hello-world.java
752 Views
6 Comments
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
hello-world.kt /demo/code/hello-world.kt
619 Views
0 Comments
fun main() {
println("Hello, World!")
}
hello-world.m /demo/code/hello-world.m
638 Views
0 Comments
(=<`:9876Z4321UT.-Q+*)M'&%$H"""'~}|Bzyxwvutsrqponmlkjihgfedcba`_^][
ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-, +*
hello-world.pl /demo/code/hello-world.pl
641 Views
0 Comments
print "Hello, World!\n";
hello-world.py /demo/code/hello-world.py
618 Views
1 Comments
print("Hello, World!")
hello-world.rs /demo/code/hello-world.rs
676 Views
0 Comments
fn main() {
println!("Hello, World!");
}
hello-world.scala /demo/code/hello-world.scala
638 Views
0 Comments
object HelloWorld {
def main(args: Array[String]): Unit = {
println("Hello, World!")
}
}
simple-string-manipulation.rb /demo/code/simple-string-manipulation.rb
670 Views
0 Comments
name = "John"
greeting = "Hello, #{name}!"
puts greeting
simple-webpage.php /demo/code/simple-webpage.php
692 Views
0 Comments
<!DOCTYPE html>
<html>
<head>
<title>My PHP Web Page</title>
</head>
<body>
<h1>Welcome to my PHP Web Page</h1>