摘要:
写一个计算器,要求实现加减乘除功能,并且能够循环接收新的数据,通过用户交互实现 import Structure.SwitchDemo01; import com.sun.scenario.effect.impl.sw.sse.SSEBlend_SRC_OUTPeer; import java.ut 阅读全文
摘要:
打印三角形(五行) package Structure; public class TestDemo { public static void main(String[] args) { for (int i = 1; i <= 5; i++) { for (int j = 5; j >= i; j 阅读全文
摘要:
打印九九乘法表 package Structure; import javax.swing.*; /* 1*1=1 1*2=2 2*2=4 1*3=3 2*3=6 3*3=9 1*4=4 2*4=8 3*4=12 4*4=16 1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 1* 阅读全文
摘要:
用while或for循环输出1~1000之间能被5整除的数,并且每行输出3个 package Structure; public class ForDemo03 { public static void main(String[] args) { for (int i = 0; i <= 1000; 阅读全文
摘要:
计算0~100的奇数和偶数的和 package Structure; public class ForDemo02 { public static void main(String[] args) { int oddSum = 0;//奇数的和 int evenSum = 0;//偶数的和 for 阅读全文