看看这个吧,问题不大,可是总是提示有错误(就一个,好像是花括号的事),大概是我自己太马虎了吧,但是通过这个相信您能看懂我的意思——
import javax.swing.*;
public class money
{
public static void main (String[] args)
{
String input =JOptionPane.showInputDialog("我这个月的工资:");
int i = Integer.parseInt(input);
double mysales;
if (mysales>5000)
{
System.out.println("请朋友吃大餐!");
System.out.println("再去游泳!");
System.out.println("打电子游戏!");
}
else if (mysales>4000 && mysales<5000)
{
System.out.println("游泳!");
System.out.println("打电子游戏!");
}
else if (mysales>3000 && mysales<4000)
{
System.out.println("打电子游戏!");
}
else
{
System.out.println("吃方便面!");
}
}
}
还有啊,我要用switch语句写,而且我要直接编译后输入我的工资,用import java.io.*
这个不太熟悉,没有接触过,您一定要帮我啊!