1. 문제n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오 2. 풀이/*n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.*/import java.util.*;public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int sum = 0; for(int i = 1; i 3. 메모출력하려는 합계(sum)은 for문 바깥에서 선언해줘야한다.for문안에서 i를 합산하여 마지막까지 합산된 sum을 for문 바깥에서 출력해준다.만약, for문 안에 print 넣어..