摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" an 阅读全文
posted @ 2020-10-26 16:03 এ三月⍤⃝有点甜 阅读(46) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
posted @ 2020-10-14 15:40 এ三月⍤⃝有点甜 阅读(56) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
posted @ 2020-10-07 16:25 এ三月⍤⃝有点甜 阅读(67) 评论(0) 推荐(0) 编辑
摘要: package com.example.calculator; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.wi 阅读全文
posted @ 2020-09-27 15:26 এ三月⍤⃝有点甜 阅读(115) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" 阅读全文
posted @ 2020-09-21 21:20 এ三月⍤⃝有点甜 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-27 11:47 এ三月⍤⃝有点甜 阅读(111) 评论(0) 推荐(0) 编辑
摘要: package work18; import java.util.ArrayList; public class Text3 { public static void main(String[] args) { // TODO Auto-generated method stub ArrayList 阅读全文
posted @ 2020-06-03 11:03 এ三月⍤⃝有点甜 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 1.编写一个随机生成 10个 0(包括) 到 100 之间的随机正整数 package pra; import java.util.Random; public class Text { public static void main(String[] args) { // TODO Auto-ge 阅读全文
posted @ 2020-05-28 10:52 এ三月⍤⃝有点甜 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1.编写一个程序,实现字符串大小写的转换并倒序输出。要求如下(1)使用for循环将字符串“ Hello world”从最后一个字符开始遍历(2)遍历的当前字符如果是大写字符,就使用 toLower Case()方法将其转换为小写字符,反之则使用 toUpper Case()方法将其转换为大写字符。( 阅读全文
posted @ 2020-05-26 17:32 এ三月⍤⃝有点甜 阅读(113) 评论(0) 推荐(0) 编辑
摘要: package lianxi1; /*2、设计四个类,分别是:(知识点:抽象类及抽象方法) (1)Shape表示图形类,有面积属性area、周长属性per,颜色属性color,有两个构造方法(一个是默认的、一个是为颜色赋值的),还有3个抽象方法,分别是:getArea计算面积、getPer计算周长、 阅读全文
posted @ 2020-05-21 11:50 এ三月⍤⃝有点甜 阅读(100) 评论(0) 推荐(0) 编辑