题解列表
3010:n以内的奇数偶数之和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=1,n,sum1=0,sum2=0; scanf("%d",&……
2000:列举小于n的偶数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i=1,n; scanf("%d",&n); while(i&l……
2544:N以内的数累加求和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i=1,sum=0; scanf("%d"……
1066:自定义函数-x的n次幂/n!
摘要:解题思路:注意事项:参考代码:#include<stdio.h>double main(){ double fac(int n); double mypow(float x,int n);……