电脑删除了软件,可是360软件管家里面还有,再删除就出现英文因为你把软件的相关文件删除掉了,但是并没有卸载,(注意:删除和卸载是两个不同的概念) 所以你在360那里还是可以看到这个
2.编写一个 java 程序,输入形式为 First Middle Last
关于JAVA输出单词首字母的程序
importjava.util.Scanner;
publicclassAssignment3{
publicstaticvoidmain(String[]args){
System.out.println("Whatareyourfirst,middle,andlastnames?");
Scannerscan=newScanner(System.in);
StringfullName=scan.nextLine();
if(fullName==null){
promptWrongName();
return;
}
String[]names=fullName.split("");
if(!verifyNames(names))
return;
printNames(names);
}
privatestaticvoidprintNames(String[]names){
printInitials(names);
printVariationOne(names);
printVariationTwo(names);
}
privatestaticStringcapitalizeFirstLetter(Stringname){
returnname.trim().substring(0,1).toUpperCase()+name.trim().substring(1).toLowerCase();
}
privatestaticStringgetInitialInUpperCase(Stringname){
returnname.trim().substring(0,1).toUpperCase();
}
privatestaticvoidprintVariationTwo(String[]names){
System.out.print("VariationTwo:");
System.out.print(capitalizeFirstLetter(names[names.length-1]));
System.out.print(",");
System.out.print(capitalizeFirstLetter(names[0]));
if(names.length==3){
System.out.print("");
System.out.print(capitalizeFirstLetter(names[1]));
}
System.out.println();
}
privatestaticvoidprintVariationOne(String[]names){
System.out.print("VariationOne:");
System.out.print(names[names.length-1].trim().toUpperCase());
System.out.print(",");
System.out.print(capitalizeFirstLetter(names[0]));
if(names.length==3){
System.out.print("");
System.out.print(getInitialInUpperCase(names[1]));
System.out.print(".");
}
System.out.println();
}
privatestaticvoidprintInitials(String[]names){
System.out.print("Yourinitialsare:");
for(inti=0;iSystem.out.print(getInitialInUpperCase(names[i]));
}
System.out.println();
}
privatestaticbooleanverifyNames(String[]names){
if(names.length!=2&&names.length!=3){
promptWrongName();
returnfalse;
}
for(inti=0;iif("".equals(names[i].trim())){
promptWrongName();
returnfalse;
}
}
returntrue;
}
privatestaticvoidpromptWrongName(){
System.out.println("Wrong.Pleaseenteryournamesproperly.");
}
}
编写java程序
//这是第一题的代码
public class Customer {
public String customerId; //客户身份证
public String custName; //客户姓名
public String custGender; //客户性别
public Customer(String customerId, String custName, String custGender){
this.customerId = customerId;
this.custName = custName;
this.custGender = custGender;
}
public String getID() {
return customerId;
}
public void setID(String customerId) {
this.customerId = customerId;
}
public String getName() {
return custName;
}
public void setName(String custName) {
this.custName = custName;
}
public String getGender() {
return custGender;
}
public void setGender(String custGender) {
this.custGender = custGender;
}
public void printMSG(){
System.out.println("客户身份证:" + this.getID());
System.out.println("客户姓名:" + this.getName());
System.out.println("客户性别:" + this.getGender());
}
public static void main(String[] args) {
Customer c = new Customer("11111","小童鞋_成er","男");
c.printMSG();
}
}
编写一个java程序,完成以下功能:
public static void main(String [] args){ String s = "Callme Ishmael."; //声明一个名为s的字符串,并使它的内容为”Callme Ishmael.” System.out.println(s); //打印整个字符串 System.out.println(s.length()); //使用length()方法打印字符串的长度 System.out.println(s.charAt(0)); //使用charAt()方法打印字符串的第一个字符 System.out.println(s.charAt(s.length()-1));要求编写一个java程序,输入学生信息,并能保存与显示学生信息。
import java.util.ArrayList; import java.util.Scanner;import com.sun.org.apache.xpath.internal.Arg; public class Student { //两个私有属性 private int no ; private String name ; //默认构造函数 public Student(){} //带参构造函数 public Student(int no,String name){ this.no=no; this.name=name; } //添加学生信息 public void addStu编写一个Java应用程序,要求如下:
我刚好谢了一个绝对原创
用到了图片,你可以将图片的代码删掉
importjava.awt.*;
importjava.awt.event.*;
importjavax.swing.*;
importjava.io.*;
publicclassNotepadextendsJFrameimplementsActionListener{
JMenuBarjbar;//菜单条
JMenuwj,bj,bz; //菜单
JMenuItemopen,save,osave,exit,help,me;//菜单项
JTextAreajta;//文本区
publicNotepad(){
jbar=newJMenuBar();
wj=newJMenu("文件");
bj=newJMenu("编辑");
bz=newJMenu("帮助");
jbar.add(wj);
jbar.add(bj);
jbar.add(bz);
setJMenuBar(jbar);
open=newJMenuItem("打开",newImageIcon("img/dk.png"));
open.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_O,InputEvent.CTRL_MASK));
wj.add(open);
open.addActionListener(this);
open.setActionCommand("open");
wj.addSeparator();
save=newJMenuItem("保存");
wj.add(save);
save.addActionListener(this);
save.setActionCommand("save");
osave=newJMenuItem("另存为",newImageIcon("img/bc.png"));
wj.add(osave);
osave.addActionListener(this);
osave.setActionCommand("osave");
wj.addSeparator();
exit=newJMenuItem("退出");
wj.add(exit);
exit.addActionListener(this);
exit.setActionCommand("exit");
help=newJMenuItem("查看帮助");
bz.add(help);
bz.addSeparator();
me=newJMenuItem("关于记事本");
bz.add(me);
jta=newJTextArea();
this.add(newJScrollPane(jta),BorderLayout.CENTER);
this.setVisible(true);
this.setSize(500,400);
this.setTitle("桃子记事本");
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
publicvoidactionPerformed(ActionEvente){
if(e.getActionCommand().equals("open")){
JFileChooserjfc=newJFileChooser();
jfc.setDialogTitle("请选择文件");
jfc.showOpenDialog(null);
jfc.setVisible(true);
Stringfilepath=jfc.getSelectedFile().getAbsolutePath();
FileReaderfr=null;
BufferedReaderbr=null;
try{
fr=newFileReader(filepath);
br=newBufferedReader(fr);
Strings="";
Stringb="";
while((s=br.readLine())!=null){
b+=s+"\r\n";
//System.out.println(s);
}
jta.setText(b);
}catch(Exceptione1){
e1.printStackTrace();
}finally{
try{
br.close();
}catch(IOExceptione1){
e1.printStackTrace();
}
}
}
elseif(e.getActionCommand().equals("osave")){
JFileChooserjfc=newJFileChooser();
jfc.setDialogTitle("请选择路径");
jfc.showSaveDialog(null);
jfc.setVisible(true);
Stringfilepath=jfc.getSelectedFile().getAbsolutePath();
FileWriterfw=null;
BufferedWriterbw=null;
try{
fw=newFileWriter(filepath);
bw=newBufferedWriter(fw);
bw.write(jta.getText());
}catch(Exceptione2){
e2.printStackTrace();
}finally{
try{
bw.close();
}catch(IOExceptione1){
e1.printStackTrace();
}
}
}
elseif(e.getActionCommand().equals("exit")){
System.exit(0);
}
}
}
相关文章
- 详细阅读
-
零基础的小白学那个编程语言,最容易详细阅读
零基础入门学习什么编程语言比较好如果你想学习编程,虽然选择第一门编程语言与你想用它来做什么最终达到什么目的有很大的关系,但是事实上某些编程语言的确比其他语言要好学。
-
C语言编程,详见补充详细阅读
关于C语言编程 具体见补充。首先指出你程序不合理的地方,n只要输入一次即可,while(scanf("%d%*c",&n)!=EOF)这句改为两行:(你的程序提交上去AC了?有点点怀疑...)) scanf("%d
-
JAVA怎么用,为什么打开就会闪退(电脑详细阅读
我的win7装了JAVA,无法正常运行,闪退第一个问题,是JAVA_HOME,不是JAVA-HOME。 第二个问题,你的系统中估计有多个JDK版本,而环境变量可能没有配置正确。 建议全部卸载掉,只装一个版
-
迷你世界怎么利用编程解除时间限制详细阅读
迷你世界时间限制怎么解除您好,很高兴为您解答。迷你世界解除时间限制的唯一方法就是实名认证,也就是说满18岁才可以取消时间限制哦。希望对你有帮助!【摘要】 迷你世界时间
-
java中的equals方法详细阅读
java中的equals怎么用?equals 方法是String类从它的超类Object中继承的, 被用来检测两个对象是否相等,即两个对象的内容是否相等,区分大小写。例子:s1=newString("sony");//创
-
怎样0基础自学编程?就是达到一般公详细阅读
怎么才能成为一个合格的程序猿?作为一个合格的程序员,首先需要做到以下几点:1,拥有基础的编程算法能力。2,具有较好的编程格式习惯。3,在编程时有耐心,有毅力。程序员是一个比较理
-
java 创建对象只能用 new 对象();方详细阅读
java对象的引用 ,可以直接用new 类构造方法 来代替写吗?谢谢当然可以代替呀,但是new Car() 就只能用在这个地方了,因为没有任何办法 在来帮你指向这个new Car(),你要获取 他的话
-
编程读入三个整数a,b,c,然后输出表详细阅读
C++简单编程,输入三个整数a、b、c的值, 输出表达式:b2-4ac的值。#include "iostream.h" void main() { int a,b,c;//定义三个变量分别用于存放输入的整数 int y;//存放运算结果
-
半路转学软件编程去湖南众智互联网详细阅读
很多人说互联网前景好,那个湖南众智互联网学院的软件开发以后前景好不?好就业不?很多人是互联网的前景非常好湖南众智互联网学院的软件开发以后的前景是很多人说互联网的前景非