[JAVA基础] 第一章 常量变量练习题
2021/7/10 22:08:07
本文主要是介绍[JAVA基础] 第一章 常量变量练习题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
一、基础案例
1.打印菱形
2.打印玫瑰花
3.在控制台输出三角图形:
4.找出以下代码的错误,并修改
二、扩展案例
1.定义字符串变量并输出
一、基础案例
1.打印菱形
操作步骤描述
- 定义一个类,类名Test04
- 在类中定main方法
- 在main方法中,使用输出语句输出如下图形:
*
* *
* *
* *
* *
* *
*
public class Test04 { public static void main(String[] args) { System.out.println(" *"); System.out.println(" * *"); System.out.println(" * *"); System.out.println("* *"); System.out.println(" * *"); System.out.println(" * *"); System.out.println(" *"); } }
2.打印玫瑰花
操作步骤描述
- 定义一个类,类名Test05
- 在类中定main方法
- 在main方法中,使用输出语句输出如下图形.
{@}
/|\
|
提示: “\”在java中是转移符,如果要在字符串中写一个”\”,你需要写为”\\”
public class Test05 { public static void main(String[] args) { System.out.println("{@}"); System.out.println("/|\\"); System.out.println(" | "); } }
3.在控制台输出三角图形:
操作步骤描述
- 定义一个类,类名Test06
- 在类中定main方法
- 在main方法中,使用输出语句输出如下图形:
*
**
***
****
public class Test06 { public static void main(String[] args) { System.out.println("*"); System.out.println("**"); System.out.println("***"); System.out.println("****"); } }
4.找出以下代码的错误,并修改
public class Test07_01 {
public static void main(String[] args) {
int a;
System.out.println(a);
{
int c = 20;
System.out.println(c);
}
c = 30;
System.out.println(c);
}
}
public class Test07_02 {
public static void main(String[] args) {
int x = 2;
{
int y = 6;
System.out.println("x is " + x);
System.out.println("y is " + y);
}
y = x;
System.out.println("x is " + x);
}
}
public class Test07 { public static void main(String[] args) { int a; //a未赋值不能直接输出 //System.out.println(a); { int c = 20; System.out.println(c); } //变量c出了括号范围,所以变量c要重新定义 //c = 30; //System.out.println(c); int x = 2; { int y = 6; System.out.println("x is " + x); System.out.println("y is " + y); } //变量y出了括号范围,所以变量y要重新定义 //y = x; System.out.println("x is " + x); } }
二、扩展案例
1.定义字符串变量并输出
操作步骤描述
- 定义一个类Test01类
- 在类中定main方法
- 在main方法中,定义字符串变量 s , 并把值初始化为: “不忘初心,方得始终”
- 输出变量s.
- 提示: 字符串的数据类型是 String .
public class Test01 { public static void main(String[] args) { String s="不忘初心,方得始终"; System.out.println(s); } }
这篇关于[JAVA基础] 第一章 常量变量练习题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-22项目:远程温湿度检测系统
- 2024-12-21《鸿蒙HarmonyOS应用开发从入门到精通(第2版)》简介
- 2024-12-21后台管理系统开发教程:新手入门全指南
- 2024-12-21后台开发教程:新手入门及实战指南
- 2024-12-21后台综合解决方案教程:新手入门指南
- 2024-12-21接口模块封装教程:新手必备指南
- 2024-12-21请求动作封装教程:新手必看指南
- 2024-12-21RBAC的权限教程:从入门到实践
- 2024-12-21登录鉴权实战:新手入门教程
- 2024-12-21动态权限实战入门指南