通过Systemoutprintln的方式输出到控制台
public class A{public static void main(String[] args) {//定义main方法
Systemoutprintln("我是一个JAVA程序");//输出我是一个JAVA程序到控制台
}
}
1代码如下:
import javaioFile;
import javaioFileNotFoundException;
import javautilHashSet;
import javautilScanner;
import javautilSet;
public class Qurey {
public static void main(String[] args) throws FileNotFoundException {
Systemoutprintln("please enter a file to read from: ");
Scanner in = new Scanner(Systemin);
String filename = innext();
Set<String> textkeywords = readWords(filename);
// inclose();
Systemout
println("please enter query keywords to seartch,1 to quit: ");
Set<String> keywords = new HashSet<String>();
Scanner input = new Scanner(Systemin);
// correct here
String temp;
while (!(temp = inputnext())equals("1")) {
keywordsadd(temptoLowerCase());
}
int qIntersectD = 0;
for (String word : keywords) {
if (textkeywordscontains(word)) {
qIntersectD++;
}
}
double Similarity = 0;
Similarity = qIntersectD
/ (Mathsqrt(textkeywordssize()) Mathsqrt(keywordssize()));
Systemoutprintln("the similarity between query and document is : "
+ Similarity);
}
public static Set<String> readWords(String filename)
throws FileNotFoundException {
Set<String> words = new HashSet<String>();
Scanner in = new Scanner(new File(filename));
inuseDelimiter("[^a-zA-Z]+");
while (inhasNext()) {
wordsadd(innext()toLowerCase());
}
inclose();
return words;
}
}
2运行结果:
根据你的代码来看,虽然看不出会显示什么形状,但是显示的结果肯定是跟你发的截图的效果一致,因为你所有的输出都用的是println();而这个每次输出都会有一次换行的 *** 作,所以就是一条直线,把部分的println()换成print()试一下
有一个按钮“New Console View”,可以让你再建一个Console,
还有一个按钮“Display Selected Console”,可以在两个Console之间切换。
这样你就可以同时显示两个Console了。
以上就是关于如何用JAVA程序在控制台输出"我是一个JAVA程序"全部的内容,包括:如何用JAVA程序在控制台输出"我是一个JAVA程序"、java 在console行输入一串String后回车,仍无法停止。 下面的程序是计算相似度的,当用户输入关键字后、eclipse中写java程序时,Console中无法显示出写出来 的图形,写的是菱形,结果显示出来是这个样子的怎么办等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)