One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
import React from 'react'; | |
import './App.css'; | |
import Login from './pages/Login' | |
function App() { | |
return ( | |
<div className="App"> | |
<Login/> | |
</div> | |
); | |
} |
Tier: A simple Console game
Battleship is a fun game between two opponents.
Your opponent's ship is hidden, guess the position(row and column) of your opponent's ship.
If your guessis right, you destroy your opponent's ship.
Gain points if you are right in detecting the position of the ship and lose points when you are wrong.
Take three turns each with another player in determining the ship's location and see who wins in the guessing game
void main() { | |
// 1. Loop through a list of numbers and print out the square of the numbers | |
List ages = [6, 7, 5, 3]; | |
for (int i = 0; i < ages.length; i++) { | |
print( ages[i] * ages[i]); | |
} | |
// 2. Use a for loop to print out all the letters in your name |
void main() { | |
var volume = Cylinder.cylinderVolume(5, 7); | |
var surfaceAreaTotal = Cylinder.totalSurfaceArea(5, 7); | |
var surfaceAreaCurved = Cylinder.curvedSurfaceArea(5,7); | |
print("The volume of the cylinder is ${volume}"); | |
print("The Total surface area of the cylinder is ${surfaceAreaTotal}"); | |
print("The curved surface area of the cylinder is ${surfaceAreaCurved}"); | |
} |
This is a utility to enable one send a message to a slack channel specific channel using slack webhook URL.