摘要:
package test; public class test1 { public static void main(String args[]){ //使用for循环计算1-100的和,除了以3结尾的那些数 int sum = 0; for(int x = 1;x<=100;x++){ if(x% 阅读全文
posted @ 2021-04-09 20:29
魔幻的猫头鹰
阅读(192)
评论(0)
推荐(0)
摘要:
package test; public class test1 { public static void main(String args[]){ //使用for循环计算1-100的和,除了以3结尾的那些数 int sum = 0; for(int x = 1;x<=100;x++){ if(x% 阅读全文
posted @ 2021-04-09 20:29
魔幻的猫头鹰
阅读(192)
评论(0)
推荐(0)
|