#Can I get a suggestion of a beginner tutorial that covers up to making programs like these:

1 messages · Page 1 of 1 (latest)

restive agateBOT
#

<@&987246399047479336> please have a look, thanks.

#

Here is an AI assisted attempt to answer your question 🤖. Maybe it helps! In any case, a human is on the way 👍. To continue talking to the AI, you can use </chatgpt:1108714622413963314>.

#

ers form a valid triangle or not.

karmic valley
#

This sounds like homework. What have you tried?

forest estuary
#

u cant really 'study' coding. Its a hand on thing. Try the excersises, or write out at least how to handle them

karmic valley
#

You can use a Scanner to get user input from the console: https://www.youtube.com/watch?v=wAEPokhj5Q4

Java user input scanner

#Java #input #scanner

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("What is your name? ");
String name = scanner.nextLine();

System.out.println("How old are you? ");
int age = scanner.nextInt();
...

▶ Play video
#

To get going, create a program that loads in A B C D as integers and just prints them straight back out

#

After that, think about what sort of logic you want to apply to A B C D

#

But there are probably more engaging tutorials out there that others can recommend

tribal flicker
#

this would be imperative programming, understanding control flow