java代码大全求个JAVA输入输出完整代码
java代码大全 时间:2021-06-25 阅读:(
)
求一个简单的java代码
代码如下,每句都加了注释了,希望能帮到你....
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
String name;//保存姓名
int age;//保存年龄
Scanner in = new Scanner(System.in);//用于获取用户的输入
System.out.print("请输入您的姓名 :");//提示用户输入姓名
name = in.nextLine();//提取用户输入的姓名
System.out.print("请输入您的年龄 :");//提示用户输入年龄
age = in.nextInt();//提取用户输入的年龄
System.out.println("姓名 :" + name);//显示用户的姓名
System.out.println("年龄 : " + age);//显示用户的年龄
}
}java语言代码完整的代码
.shijie.test;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class test1 {
static mproduct m1 = new mproduct();
static mproduct m2 = new mproduct();
static mproduct m3 = new mproduct();
public static void main(String[] args) {
// 初始话数据
GetList();
System.out.println("***************");
System.out.println("请选择购买的商品编号");
System.out.println(m1.id + "." + m1.name + " " + m2.id + "."
+ m2.name + " " + m2.id + "." + m2.name + " ");
System.out.println("***************");
System.out.println("请输入商品编号:");
Scanner s = new Scanner(System.in);
int int1 = s.nextInt();
if (int1 == 1) {
System.out.println(m1.name + " " + m1.price);
} else if (int1 == 2) {
System.out.println(m2.name + " " + m2.price);
} else if (int1 == 3) {
System.out.println(m3.name + " " + m3.price);
}
System.out.println("是否继续:");
while (new Scanner(System.in).next().equals("y")) {
System.out.println("请输入商品编号:");
Scanner s2 = new Scanner(System.in);
int int2 = s.nextInt();
if (int1 == 1) {
System.out.println(m1.name + " " + m1.price);
} else if (int2 == 2) {
System.out.println(m2.name + " " + m2.price);
} else if (int2 == 3) {
System.out.println(m3.name + " " + m3.price);
}
System.out.println("是否继续:");
}
}
static class mproduct {
int id;
String name;
double price;
}
static void GetList() {
m1.id = 1;
m1.name = "T血";
m1.price = 245.0;
m2.id = 2;
m2.name = "网球鞋";
m2.price = 570.0;
m3.id = 1;
m3.name = "网球拍";
m3.price = 247.0;
}
}求一个java代码
运行过了,效果绝对让你满意!呵呵……
说明:
要在E:目录下放置好“头像6.jpg”和“头像5.jpg”作为回答正确、回答错误时候要显示的图片。
(当然啦,你放在项目的根目录下都可以,只要稍微改一下那个路径就可以了)
import java.awt.BorderLayout;
import javax.swing.JPanel;
import javax.swing.JFrame;
import java.awt.Dimension;
import javax.swing.JLabel;
import java.awt.Rectangle;
import javax.swing.JRadioButton;
import javax.swing.ImageIcon;
import javax.swing.*;
public class EGshiti extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel jContentPane = null;
private JLabel jLabel = null;
private JLabel jLabel1 = null;
private JRadioButton jRadioButton = null;
private JRadioButton jRadioButton1 = null;
private JRadioButton jRadioButton2 = null;
private JLabel jLabel2 = null;
private JLabel jLabel3 = null;
private ButtonGroup bg=null;
/**
* This is the default constructor
*/
public EGshiti() {
super();
initialize();
}
/**
* This method initializes this
*
* @return void
*/
private void initialize() {
this.setSize(336, 291);
this.setContentPane(getJContentPane());
this.setTitle("英语试题");
this.setVisible(true);
this.addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent e) {
System.exit(0);
}
});
}
/**
* This method initializes jContentPane
*
* @return javax.swing.JPanel
*/
private JPanel getJContentPane() {
if (jContentPane == null) {
jLabel3 = new JLabel();
jLabel3.setBounds(new Rectangle(135, 67, 85, 74));
jLabel3.setText("");
jLabel2 = new JLabel();
jLabel2.setBounds(new Rectangle(20, 155, 256, 18));
jLabel1 = new JLabel();
jLabel1.setBounds(new Rectangle(15, 36, 155, 18));
jLabel1.setText("( ) some flowers for you");
jLabel = new JLabel();
jLabel.setBounds(new Rectangle(15, 14, 39, 18));
jLabel.setText("题目:");
jContentPane = new JPanel();
jContentPane.setLayout(null);
jContentPane.add(jLabel, null);
jContentPane.add(jLabel1, null);
jContentPane.add(getJRadioButton(), null);
jContentPane.add(getJRadioButton1(), null);
jContentPane.add(getJRadioButton2(), null);
jContentPane.add(jLabel2, null);
jContentPane.add(jLabel3, null);
bg=new ButtonGroup();
bg.add(jRadioButton);
bg.add(jRadioButton1);
bg.add(jRadioButton2);
}
return jContentPane;
}
/**
* This method initializes jRadioButton
*
* @return javax.swing.JRadioButton
*/
private JRadioButton getJRadioButton() {
if (jRadioButton == null) {
jRadioButton = new JRadioButton();
jRadioButton.setBounds(new Rectangle(16, 60, 88, 26));
jRadioButton.setText("A.给你的花");
jRadioButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
jLabel3.setIcon(new ImageIcon("E:\头像6.jpg"));
jLabel2.setText("正确答案:A。
原因不用解释了吧~~呵呵……");
}
});
}
return jRadioButton;
}
/**
* This method initializes jRadioButton1
*
* @return javax.swing.JRadioButton
*/
private JRadioButton getJRadioButton1() {
if (jRadioButton1 == null) {
jRadioButton1 = new JRadioButton();
jRadioButton1.setBounds(new Rectangle(16, 90, 88, 26));
jRadioButton1.setText("B.给他的花");
jRadioButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
jLabel3.setIcon(new ImageIcon("E:\头像5.jpg"));
jLabel2.setText("正确答案:A。
原因不用解释了吧~~呵呵……");
}
});
}
return jRadioButton1;
}
/**
* This method initializes jRadioButton2
*
* @return javax.swing.JRadioButton
*/
private JRadioButton getJRadioButton2() {
if (jRadioButton2 == null) {
jRadioButton2 = new JRadioButton();
jRadioButton2.setBounds(new Rectangle(16, 123, 88, 26));
jRadioButton2.setText("C.给她的花");
jRadioButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent e) {
jLabel3.setIcon(new ImageIcon("E:\头像5.jpg"));
jLabel2.setText("正确答案:A。
原因不用解释了吧~~呵呵……");
}
});
}
return jRadioButton2;
}
public static void main(String args[]){
new EGshiti();
}
} // @jve:decl-index=0:visual-constraint="10,10"求个JAVA输入输出完整代码
//package ??;
import java.util.Scanner;
public class D{
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
double d = input.nextDouble();
System.out.println(d);
}
}
易探云服务器怎么样?易探云是国内一家云计算服务商家,致力香港云服务器、美国云服务器、国内外服务器租用及托管等互联网业务,目前主要地区为运作香港BGP、香港CN2、广东、北京、深圳等地区。目前,易探云推出的国内云服务器优惠活动,国内云服务器2核2G5M云服务器低至330元/年起;成都4核8G/200G硬盘/15M带宽,仅1888元/3年起!易探云便宜vps服务器配置推荐:易探云vps云主机,入门型云...
Sharktech(鲨鱼服务器商)我们还是比较懂的,有提供独立服务器和高防服务器,而且性价比都还算是不错,而且我们看到有一些主机商的服务器也是走这个商家渠道分销的。这不看到鲨鱼服务器商家洛杉矶独立服务器纷纷促销,不限制流量的独立服务器起步99美元,这个还未曾有过。第一、鲨鱼机房服务器方案洛杉矶机房,默认1Gbps带宽,不限流量,自带5个IPv4,免费60Gbps / 48Mpps DDoS防御。C...
提速啦的来历提速啦是 网站 本着“良心 便宜 稳定”的初衷 为小白用户避免被坑 由赣州王成璟网络科技有限公司旗下赣州提速啦网络科技有限公司运营 投资1000万人民币 在美国Cera 香港CTG 香港Cera 国内 杭州 宿迁 浙江 赣州 南昌 大连 辽宁 扬州 等地区建立数据中心 正规持有IDC ISP CDN 云牌照 公司。公司购买产品支持3天内退款 超过3天步退款政策。提速啦的市场定位提速啦主...
java代码大全为你推荐
prisma安卓版kovo安卓版的哪有下载?国家法规数据库哪个常用的法律APP比较好用?shoujiao求【叫兽】的简介comexception5种常见的Exception!医院排队系统医院排队机和医院排队机的区别有哪些?动画分镜头脚本动画分镜头台本的作用?怎么查微信注册时间微信号用了多久,怎么知道pass是什么在英语里pass是什么意思flv转avi为什么将flv格式转换成avi格式就不太清楚啦yy语音注册歪歪语音如何安装与注册?
域名系统 tk域名注册 中国十大域名注册商 特价空间 网络星期一 parseerror 免费静态空间 警告本网站 165邮箱 支持外链的相册 linode支付宝 贵阳电信测速 中国域名 杭州电信宽带优惠 美国主机 web服务器 认证机构 木马检测 1500元电脑主机配置 自住型商品房申请网站 更多