안녕하세요, 다음은 코드
입니다Using System;;
Using system.collections.generic;
Using System.Linq;;
Using System.Text;;
Namespace 콘솔 애플리케이션 1
{
클래스 프로그램
{
Static voidmain (string [] args)
{
For (int I = 1;; I lt;; = 100; I++) {
//제곱 계산 및 인쇄
Console.writeline +(i*i).ToString());+"의 제곱:"+(I * I). tostring ());
//제곱근을 계산하고 인쇄
Console.writeline (i.tostring ()+"의 제곱근:"+math.sqrt (I). tostring ());
//자연 로그
Console.writeline (i.tostring ()+"의 자연 로그:" +Math.Log(i, math.e). tostring ())
//e 지수를 찾을 수 없음
}
Console.readline ();
}
}
}
그 중 E 지수는 잘 모르겠고, Math 방법에서도 이것과 관련된 것을 찾지 못했다. 。 。