Core Java| print() Vs println() Vs printf() | Know the difference

  Рет қаралды 223

Learn with Professor

Learn with Professor

Күн бұрын

Core Java| print() Vs println() Vs prinf() | Know the difference
#tamilkaruvoolam #corejava #print
Source Code
import java.util.Scanner;
class Employee {
String name;
Double salary;
Employee(String name) {
this.name = name;
}
Employee(String name, Double salary) {
this(name);
this.salary = salary;
}
public Double getSalary() {
return salary;
}
public String toString() {
return "Employee [name=" + name + ", salary=" + salary + "]";
}
}
public class EmployeeTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter the Name: ");
String name = sc.nextLine();
System.out.print("Enter the Salary: ");
Double salary = sc.nextDouble();
sc.nextLine();
Employee employee = new Employee(name, salary);
System.out.println(employee.toString());
System.out.printf("%.3f", employee.getSalary());
}
}

Пікірлер
Java printf 🖨️
11:22
Bro Code
Рет қаралды 131 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 17 МЛН
Beat Ronaldo, Win $1,000,000
22:45
MrBeast
Рет қаралды 158 МЛН
Intro to Java Programming - Course for Absolute Beginners
3:48:25
freeCodeCamp.org
Рет қаралды 3,7 МЛН
Java String Format
19:52
Mike Møller Nielsen
Рет қаралды 22 М.
Explain about System.out.println();
8:27
DURGA EDUCATION
Рет қаралды 383 М.
Pre-Algebra Final Exam Review
1:56:08
The Organic Chemistry Tutor
Рет қаралды 334 М.
Think Fast, Talk Smart: Communication Techniques
58:20
Stanford Graduate School of Business
Рет қаралды 44 МЛН
AI Is Making You An Illiterate Programmer
27:22
ThePrimeTime
Рет қаралды 297 М.
Python for Beginners - Learn Coding with Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 20 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН