📄 sumton.txt
字号:
// Program to compute the sum of numbers from 0 to n
// where n is entered by the user
import javax.swing.JOptionPane;
public class SumToN
{
public static void main(String[] args)
{
int counter = 0;
int total = 0;
String numStr;
numStr = JOptionPane.showInputDialog(
"Enter a value for n:" );
int n = Integer.parseInt(numStr);
while (counter <= n)
{
total += counter;
counter++;
}
JOptionPane.showMessageDialog(null,
"Sum to " + n + " is " + total);
System.exit(0);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -