public class TestStar {
成都创新互联公司主要从事网站设计制作、网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务商洛,十年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:028-86922220
public static void main(String[] args) {
String star = "*";
for (int i = 0; i 5; i++) {
if (i == 0) {
System.out.print(" " + star);
System.out.println();
}
if (i == 1) {
for (int z = 0; z 4; z++) {
System.out.print(" " + star);
}
System.out.println();
}
if (i == 2) {
System.out.print(" ");
for (int x = 0; x 3; x++) {
System.out.print(" " + star);
}
System.out.println();
}
if (i == 3) {
for (int y = 0; y 2; y++) {
System.out.print(" " + star + " ");
}
}
}
}
}
是好使的 但是我没找到画五角星有什么规律(五角星好象不是正规图形吧?)如果还有什么要求的话 补充问题(如果是用*填充所有的东西 不包括 “ ”的话 我可以重新再给你写一个)
jsp servlet?..你可以在Servlet中..reques.setAttribute("error","账号密码错误!");然后在jsp中.判断是否存在这个值..再使用javascript弹出咯..jsp:导入包:%@taglib prefix="c" uri=" "%判断这样写:c:if test="${not empty error}"�0�2 �0�2 �0�2 input type="hidden" value="${error}" id="error_id"�0�2 �0�2 �0�2 script type="text/javascript"�0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2!--�0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 alert(document.getElementById("error_id").value);�0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2 �0�2//--�0�2 �0�2 �0�2 /script/c:if
你试下吧..不懂..Call我
1. 你在do循环体内重复定义了answer变量,这不需要
2. 你用==比较字符串内容,是不行的。需要用equals来比较
==是用来比较两引用是否相同,而不是两个引用的对象内容是否相同的。
import java.util.Scanner;
public class Test3 {
public static void main(String[] args) {
String answer="";
do{
Scanner input=new Scanner(System.in);
answer=input.next();
System.out.println("你输入的是:" + answer);
if(answer.equals("你好")){
System.out.println("你好!我是小P,你是谁啊?");
}else if(answer.equals("我是令狐冲")){
System.out.println("你终于回来啦!好想你哦!");
}else if(answer.equals("再见")){
System.out.println("再见!下次还找我来玩哦!");
}else {
System.out.println("对不起,我不懂你在说什么");
}
} while(!answer.equals("再见"));
System.out.println("程序结束");
}
}
Java 是一种编程语言,它本身的作用是通过编写应用程序,帮助人们解决日常工作、生活和学习遇到的问题。
一些常见的java功能代码。如复制文件夹及文件到指定目录,遍历指定盘符所有文件,检索字符串是否符合指定要求。
public class test1 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("请输入本月税前工资");
double d = scan.nextDouble(); //税前工资
double sal= d - 3500; // 减去扣除数的
double salary = 0; //初始化工资
if(sal=1500){
salary = sal*0.03;
}else if(sal=4500){
salary = sal*0.1-105;
}else if(sal=9000){
salary = sal*0.2-555;
}else if(sal=35000){
salary = sal*0.25-1005;
}else if(sal=55000){
salary = sal*0.3-2755;
}else if(sal=80000){
salary = sal*0.35-5505;
}else{
salary = sal*0.45-13505;
}
System.out.println("个人所得税的缴纳额度为:"+salary+"元");
}
}
尽量简化逻辑 像钱的多少 先用变量存储起来 再带入就好了
尽量简化代码 像输出也只用一句然后带入就好了
尽量自己考虑 每一点问题都是自己敲代码的过程中产生然后明白的
这题是我原题 我知道你在哪 既然在那了 为什么还不努力呢