Your IP address will be publicly visible if you make any edits.
최소정수의합/김정현
From ZeroWiki
More actions
소 감
코 드
//자바
public class AtleastSum
{
public static void main(String args[])
{
int n=0;
int sum=0;
while(sum<3000)
{
n++;
sum+=n;
}
System.out.println("n= "+n+" sum = "+sum);
}
}