#Can I get a suggestion of a beginner tutorial that covers up to making programs like these:
1 messages · Page 1 of 1 (latest)
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.
This sounds like homework. What have you tried?
u cant really 'study' coding. Its a hand on thing. Try the excersises, or write out at least how to handle them
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();
...
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
I like the Java trails: https://docs.oracle.com/javase/tutorial/java/index.html
This beginner Java tutorial describes fundamentals of programming in the Java programming language
But there are probably more engaging tutorials out there that others can recommend
you can study coding, its just important to also practice
this would be imperative programming, understanding control flow