18.
int main(){ int i; int sum = 0; for (i = 1; i <= 10; i++) { sum += (i * i); } printf("1^2+2^2+...+10^2=%d\n", sum); return 0;}
20题:1<<24