标签:输出 执行 rgs 代码 防止 array image 目的 http
实验三 String类的应用
1.已知字符串:"this is a test of java".按要求执行以下操作:(要求源代码、结果截图。)
2.请编写一个程序,使用下述算法加密或解密用户输入的英文字串。要求源代码、结果截图。
3.已知字符串“ddejidsEFALDFfnef2357 3ed”。输出字符串里的大写字母数,小写英文字母数,非英文字母数。
1.
(1).源代码:
(2).源代码:
(3).源代码:
(4).源代码:
2.源代码:
3.源代码:
package test; import java.util.Scanner;
public class test3 {
public static void main(String args[]) {
int count1=0,count2=0,count3=0;
String str1 ="ddejidsEFALDFfnef2357 3ed";
char c[]= str1.toCharArray();
int len=str1.length();
for(int i=0;i<str1.length();i++) {
if(c[i]>=‘A‘&&c[i]<‘Z‘) {
count1++;
}
else if(c[i]>=‘a‘&&c[i]<‘z‘) {
count2++;
}
else {
count3++;
}
}
System.out.println("大写字母数:"+count1);
System.out.println("小写字母数:"+count2);
System.out.println("非英文字母数:"+count3);
System.out.println("字符串长度 :"+len);
}
}
截图:
学习总结:
标签:输出 执行 rgs 代码 防止 array image 目的 http
原文地址:https://www.cnblogs.com/pzw200915/p/11599677.html