- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
14小时前关门了。
Improve this question
public class P1 {
public static void main(String[] args) {
System.out.println("hi");
}
public static int stringValue(String []args) {
String str = "mass";
System.out.println("String: "+str);
int hi = 0;
int asciiValue = 0;
int mult = 0;
for (int j = 0; j < str.length(); j++) {
if (str.charAt(j) == asciiValue) {hi -= str.charAt(j);}
asciiValue = str.charAt(j);
if (Character.isDigit(str.charAt(j))) {
asciiValue = 0;
for (int i = 0; i < str.length(); i++) {
if ((int)(str.charAt(i)) >= asciiValue) {asciiValue = str.charAt(i);}
}
asciiValue = (asciiValue * (int)(str.charAt(j)));
// System.out.println(asciiValue);
}
hi += asciiValue;
if (asciiValue == 32) {hi-=32;}
}
return (int)hi;
}}
如何让第二个类运行而不仅仅是第一个类,我使用记事本++并从cmd调用
我是一个新的计算机科学的学生,不能得到第二部分运行。作业希望一切在同一类,但在不同的方法
1条答案
按热度按时间jv2fixgn1#