Veritas Logic & Computation Assignment 1

/** *
* Name:
* Project:
* Date:
*
* Quick cheat sheet:
*
* Math only:
* int: stores whole numbers
* double: stores numbers with decimal points
*
* boolean algebra
* boolean: stores a true or false value
*
* text
* char: stores a single character
* String: stores a string of characters
*
* How to output text to the terminal.
* String x = "And this is how you output variables with println."
* System.out.println("This is how you type stuff in manually. " + x);
*
* Variables cannot share names, each variable must have an unique name!!!
*
*/


public class Main
{
public static void main (String[] args)
{
//Out of bounds

//#1. Write code that prints "Hello world!!!" to the screen.

System.out.println("Hello world!");

//#2. Write code that swaps the values of two given numbers and then outputs the new values to a terminal.
/*
* Example: a = 10, b = 20
* Output: a = 20, b = 10
*
* Hint: Don't be afraid to add more variables to solve your problem.
*/

int x = 10;
int y = 20;
int swap = x;
x = y;
y = swap;
System.out.println("X is " + x + "Y is " + y);

System.out.println("X is ");
System.out.println(x);
System.out.println("Y is ");
System.out.println(y);

//#3. Write code that returns the squared value of a given number.
// Example: x = 3 Output: 9

x = 3;
x = x * x;
System.out.println(x);


//#4. Write code that returns the greater value between two numbers
// Example: x = 4 y = -5 return 4


x = 4;
y = -5;
if (x > y)
{
System.out.println(x);
}

else
{
System.out.println(y);
}


//#5. Write code that compares two values and swaps the values if the first value is less than the second value.
// Example: x = 10 y = 21, x should equal 10


x = 10;
y = 21;
swap = x;

if (x < y)
{
x = y;
y = swap;
System.out.println(x);
}


//#6. Write code that checks a number to see if it is a negative value or not.


x = 10;

if(x > 0)
{
System.out.println("X is positive!");
}

else
{
System.out.println("X is negative!");
}



//#7. Write code that checks a number to see if it is an even number or not.
// Hint: There is an operation called modulus (%) that returns the REMAINDER of a number after dividing.




//#8. Write code that when given three grades, it returns the average of those three grades
//# AND returns a letter grade as well based on the average.
// Example: Inputs: 94, 87, 75 Outputs: 85.333, B




//#9. Write code that checks whether a boolean variable is true or false, and then outputs a special message
//# based on whether the boolean value is true or false.
// Example: myboolean = true Output: "This boolean is true" myboolean = false Output: "This boolean is false"




//#10. Challenge: Write me a program that can simulate a game of rock paper scissors, given two inputs
//# The inputs can either be "rock", "paper", or "scissors".
//# The output dictates which player won the game.
// Example: Player 1: "Rock" Player 2: "Paper" Output: "Player 2 wins!!!"


//Out of bounds
}
}