我用cmd打了差不多的代码,但出现错误,求指教
public class test{
public static void main(String[] args){
String name="爱慕课";
char sex='男';
int num=18;
double price=120.5;
boolean ok=ture;
System.out.println("姓名:"+name);
System.out.println("性别:"+sex);
System.out.println("中奖数字:"+num);
System.out.println("价格:"+price);
System.out.println(ok);
}
}
test.java:7: 错误: 找不到符号
boolean ok=ture;
^
符号: 变量 ture
位置: 类 test
1 个错误
是不是cmd里不能运行关键字boolean?