창고/Backup_2013_0121 Q6 by 가능성1g 2012. 3. 9. 반응형 using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace EulerProject { class Program { static void question() { /* 1 부터 100까지의 수의 제곱의 합과 합의 제곱의 차 */ /* 위의 식을 정리하면 (1~100수)*(1~100합-1~100수) */ int Answer = 0; for (int i = 1; i <= 100; i++) { Answer += i * (5050 - i); } Console.WriteLine("Q6 {0} ", Answer); } static void Main(string[] args) { question(); } } } 반응형 공유하기 게시글 관리 Release Center 저작자표시 비영리 동일조건 관련글 Advanced Dungeons & Dragons: Treasure of Tarmin ( 1983 ) Advanced Dungeons & Dragons: Cloudy Mountain Q5 Q4