Yam Code
Sign up
Login
New paste
Home
Trending
Archive
English
English
Tiếng Việt
भारत
Sign up
Login
New Paste
Browse
import java.awt.*; import java.util.Scanner; public class Vehicle { private String name; private int giatri; private int dungtich; public Vehicle() { } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getGiatri() { return giatri; } public void setGiatri(int giatri) { this.giatri = giatri; } public int getDungtich() { return dungtich; } public void setDungtich(int dungtich) { this.dungtich = dungtich; } public Vehicle(String name, int giatri, int dungtich) { this.name = name; this.giatri = giatri; this.dungtich = dungtich; } public int Thue() { int thue= this.giatri; if(this.dungtich<100) { thue += this.giatri/100; } else if(this.dungtich>=100 && this.dungtich <=200) { thue += this.giatri/100*3; } else if(this.dungtich>200) { thue+= this.giatri/100*5; } return thue; } //1. Nhập thông tin và tạo các đối tượng carOne, carTwo, carThree //2. Xuất bảng kê khai tiền thuế trước bạ của các xe. //3. Thoát. // public static void Bang_Thue(Vehicle carOne, Vehicle carTwo, Vehicle carThree) { int i=1; System.out.printf("Bang kê khai tiền thuế\n"); System.out.printf("|%3s|%-10s|%10s|\n","STT","Tên xe", "Thuế"); System.out.printf("|%3d|%-10s|%10d|\n",i++,carOne.name,carOne.Thue()); System.out.printf("|%3d|%-10s|%10d|\n",i++,carTwo.name,carTwo.Thue()); System.out.printf("|%3d|%-101s|%10d|\n",i++,carThree.name,carThree.Thue()); } public static void Menu() { System.out.print("1. Nhập thông tin và tạo các đối tượng carOne, carTwo, carThree\n"); System.out.print("2. Xuất bảng kê khai tiền thuế trước bạ của các xe.\n"); System.out.print("3. Thoát.\n"); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); Vehicle carOne =new Vehicle(); Vehicle carTwo=new Vehicle(); Vehicle carThree=new Vehicle(); int chon; while (true) { Menu(); chon = sc.nextInt(); sc.nextLine();//fflush switch (chon) { case 1: { System.out.println("Nhập giá trị và dung tích xe 1"); carOne = new Vehicle("Car One",sc.nextInt(),sc.nextInt()); System.out.println("Nhập giá trị và dung tích xe 2"); carTwo = new Vehicle("Car Two", sc.nextInt(),sc.nextInt()); System.out.println("Nhập giá trị và dung tích xe 3"); carThree = new Vehicle("Car Three", sc.nextInt(),sc.nextInt()); break; } case 2: Bang_Thue(carOne,carTwo,carThree); break; } } } }
Paste Settings
Paste Title :
[Optional]
Paste Folder :
[Optional]
Select
Syntax Highlighting :
[Optional]
Select
Markup
CSS
JavaScript
Bash
C
C#
C++
Java
JSON
Lua
Plaintext
C-like
ABAP
ActionScript
Ada
Apache Configuration
APL
AppleScript
Arduino
ARFF
AsciiDoc
6502 Assembly
ASP.NET (C#)
AutoHotKey
AutoIt
Basic
Batch
Bison
Brainfuck
Bro
CoffeeScript
Clojure
Crystal
Content-Security-Policy
CSS Extras
D
Dart
Diff
Django/Jinja2
Docker
Eiffel
Elixir
Elm
ERB
Erlang
F#
Flow
Fortran
GEDCOM
Gherkin
Git
GLSL
GameMaker Language
Go
GraphQL
Groovy
Haml
Handlebars
Haskell
Haxe
HTTP
HTTP Public-Key-Pins
HTTP Strict-Transport-Security
IchigoJam
Icon
Inform 7
INI
IO
J
Jolie
Julia
Keyman
Kotlin
LaTeX
Less
Liquid
Lisp
LiveScript
LOLCODE
Makefile
Markdown
Markup templating
MATLAB
MEL
Mizar
Monkey
N4JS
NASM
nginx
Nim
Nix
NSIS
Objective-C
OCaml
OpenCL
Oz
PARI/GP
Parser
Pascal
Perl
PHP
PHP Extras
PL/SQL
PowerShell
Processing
Prolog
.properties
Protocol Buffers
Pug
Puppet
Pure
Python
Q (kdb+ database)
Qore
R
React JSX
React TSX
Ren'py
Reason
reST (reStructuredText)
Rip
Roboconf
Ruby
Rust
SAS
Sass (Sass)
Sass (Scss)
Scala
Scheme
Smalltalk
Smarty
SQL
Soy (Closure Template)
Stylus
Swift
TAP
Tcl
Textile
Template Toolkit 2
Twig
TypeScript
VB.Net
Velocity
Verilog
VHDL
vim
Visual Basic
WebAssembly
Wiki markup
Xeora
Xojo (REALbasic)
XQuery
YAML
HTML
Paste Expiration :
[Optional]
Never
Self Destroy
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Status :
[Optional]
Public
Unlisted
Private (members only)
Password :
[Optional]
Description:
[Optional]
Tags:
[Optional]
Encrypt Paste
(
?
)
Create New Paste
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Site Languages
×
English
Tiếng Việt
भारत