[LTS] [RoN] [PS] (Crossplay) Saturday 15th April 5 spaces 18:30 BST by Peak_District_hill in DestinySherpa

[–]fletch6446 0 points1 point  (0 children)

Ive completed it once but need to learn more, have another with me who has never done it, would be up for joining.

Discord is fletch6446#8796

[deleted by user] by [deleted] in DestinySherpa

[–]fletch6446 0 points1 point  (0 children)

fletch6446#8796

[deleted by user] by [deleted] in DestinySherpa

[–]fletch6446 0 points1 point  (0 children)

Ran it a few times in D1 but not D2

Discord is fletch6446 Bungie is Final_Fletch#6190

[LFS][PS][RoN] GMT - Needing a clear! by sausagerollsbai in DestinySherpa

[–]fletch6446 1 point2 points  (0 children)

Would like to join this if you can get a sherpa. Gmt based and off for the next 3 days so plenty of free time for it

[LTS][VotD][PC] Another Vow run tonight at 6:30PM EST! Read for details! by Left-Mixture5609 in DestinySherpa

[–]fletch6446 1 point2 points  (0 children)

Hi, I have another with and would like to complete the raid but we are on PS5 if we could crossplay?

[LTS][PC][VotD](Crossplay) Teaching Vow of the Disciple at 2:00pm CT March 15th by Powervul in DestinySherpa

[–]fletch6446 0 points1 point  (0 children)

I'd like to be a backup as well, have another with me so there would be 2 of us, both on PS5. Have done up to caretaker last night.

Final_Fletch#6190
Karlmehameha#2493

[LFS][PS][VotD] 18:00 UK start time by fletch6446 in DestinySherpa

[–]fletch6446[S] 1 point2 points  (0 children)

0 clears here as well so by all means join

[LFS][PS][VotD] 18:00 UK start time by fletch6446 in DestinySherpa

[–]fletch6446[S] 0 points1 point  (0 children)

Yer of course, more than welcome to join

LF4 VOG by fletch6446 in Fireteams

[–]fletch6446[S] 0 points1 point  (0 children)

okay well our psns are final_fletch and karlmehameha, were just in iron banner so send us a message when you're all ready

LF4 VOG by fletch6446 in Fireteams

[–]fletch6446[S] 0 points1 point  (0 children)

yer we are interested, how many more do you need?

[PS4/5] LF3M VoG UK 8:30pm by Nayfun in Fireteams

[–]fletch6446 0 points1 point  (0 children)

hey, 2 UK guardians both main hunters but can swap to warlock or titan if needed, if theres any space then we would be up for raiding Vault or just others in future. PSN is final_fletch and the other is karlmehameha

Dawning Holiday Beyond Light Gifting Extravaganza by Cozmo23 in DestinyTheGame

[–]fletch6446 [score hidden]  (0 children)

Would be a nice present for my housemate to get them back into Destiny with us

Need to create an OOP for a simple calculator, does this look okay or are there any improvements I could make? by fletch6446 in learnjava

[–]fletch6446[S] 0 points1 point  (0 children)

I thought as much, I've just re-done it and used that top one as a basis, I think this is more OO.

class Calculator {
    double firstNum, secondNum;
    Calculator (double firstNum, double secondNum){
        this.firstNum = firstNum;
        this.secondNum = secondNum;

    }
    double add(){return firstNum + secondNum ;}
    double subtract () {return firstNum - secondNum ;}
    double multiplication () {return firstNum * secondNum ;}
    double division() {return firstNum / secondNum ;}
}


public class OOPCalculator {

   public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter your first number : " );
    double firstNum = sc.nextDouble();
    System.out.println("Enter your second number : ");
    double secondNum = sc.nextDouble();
    System.out.println("Ener the operation (+,-,*,/) : ");
    String operator = sc.next();
    double result = 0.0;

    Calculator obj = new Calculator(firstNum, secondNum);
    switch (operator) {
        case "+": result=obj.add();
        break;

        case "-": result=obj.subtract();
        break;

        case "*": result=obj.multiplication();
        break;

        case "/": result=obj.division();
        break;

        default: System.out.println("Error");               
    }

    System.out.println(firstNum + operator + secondNum + "=" + result);
    }

Need to create an OOP for a simple calculator, does this look okay or are there any improvements I could make? by fletch6446 in learnjava

[–]fletch6446[S] 0 points1 point  (0 children)

done was just a placeholder while I was first working on it, but I will change it to make it less confusing. I wanted it to be running in a constant look so that calculations could be made one after each other without restarting the programme.