UCSD_CSE110_Lab1

Go to bottom

Picture of Zhuhai

Chi as SDE

Where I from?

Zhuhai, Guangdong, China; a city near Hong Kong.
Picture of Zhuhai Below is a description from wiki:

Zhuhai (/ˈdʒuːˈhaɪ/,[3] Chinese: 珠海; pinyin: Zhūhǎi; Yale: Jyūhói), also known as Chuhai is a prefecture-level city located on the west bank of Pearl River estuary on the central coast of southern Guangdong province, People’s Republic of China, on the southeastern edge of Pearl River Delta. Its name literally means “pearl sea”, which originates from the city’s location at the mouth of the Pearl River meeting the South China Sea. Zhuhai borders Jiangmen to the west, Zhongshan to the north and Macau to the southeast, and shares maritime boundaries with Shenzhen and Hong Kong to the northeast across the estuary.

What languages I like? (rank from high to low)

  1. Java
  2. Python
  3. C++
  4. Swift
  5. C
  6. Assembly

My favorite Drink

My favorite drink is Dihydrogen oxide (H2O).

I want to drink 452 ml of water each 86400 second
I love water at 50 Celsius

Hello World in 5 languages

C

#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}

C++

#include <iostream>

int main() {
	std::cout << "Hello World";
	return 0;
}

PHP

echo "Hello World";

Assembly

    global _main
    extern _printf

    section .text
_main:
    push    message
    call    _printf
    add        esp, 4
message:
    db    'Hello World', 10, 0

Ruby

puts 'Hello World'

Anime I watch recently (no rank)

Check Lists For This Lab

Test for Nested List
Mix order with unorder
  1. This is order at first
    1. Nice
      • I
      • II
        • A
        • B
      • III
    2. Good
    3. Excellent
  2. This is order at second
    CopyRight
    Back To the Top