問題3回答
#include<stdio.h>
main() { int i, total = 0; for(i = 0; i <= 10; i++){ total += (2 * i) + 1; } printf("Total is %d\n", total); }
[ 戻る ]