1. #include <stdio.h>
int main
int a,b;
scanf("%d",&a)
b:=(a*(a*a))+1;
if b % 3 = 0 then b := b div 3;
if b % 5 = 0 then b := b div 5;
if b % 7 = 0 then b := b div 7;
if b % 9 = 0 then b := b div 9;
if b % 11 = 0 then b := b div 11;
if b % 13 = 0 then b := b div 13;
if b %15 = 0 then b := b div 15;
printf("%d\n",(100*a-b) / 2);
end.
输入:10
输出:_____
详细过程,说简单点,不要说专业语言.谢谢