제목 설명:
n과 a를 입력하고 a+aa+aaa+…aa…a(n a), if n=일 때 3,a=2, 2+22+222의 결과는 246입니다.
java 관련 비디오 튜토리얼: java 교육 비디오
Input:
에는 두 개의 정수 n과 a가 포함되어 있습니다. 의미는 위와 같고, n과 a는 모두 10보다 작은 음수가 아닌 정수라고 가정할 수 있습니다.
Output:
Output the sum of the first n terms, 점유 별도의 줄
샘플 입력:
3 2
샘플 출력:
246
프로그램 코드:
import java.util.*; public class Main { public static void main(String[] args) { Scanner input=new Scanner(System.in); int n=input.nextInt(); int x=input.nextInt(); int sum=0,b=x; for(int i=1;i<=n;i++) { sum+=x; x=x*10+b; } System.out.println(sum); } }
자세한 내용은 기사를 방문하세요: # 🎜🎜#javaDevelopmentIntroduction
위 내용은 Java에서 시퀀스의 합을 계산하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!