📄 application1.jad
字号:
// Decompiled by DJ v2.9.9.60 Copyright 2000 Atanas Neshkov Date: 2002-11-8 17:19:05
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: Application1.java
package addnum;
import java.io.PrintStream;
import javax.swing.UIManager;
public class Application1
{
public Application1()
{
}
public static void main(String args[])
{
int n = 100;
int sum = 0;
for(; n > 0; n--)
sum += n;
System.out.println("1+2+3+...+100=".concat(String.valueOf(String.valueOf(sum))));
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}
catch(Exception e)
{
e.printStackTrace();
}
new Application1();
}
static final int max_num = 100;
static
{
max_num = 100;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -