题解列表

筛选

求圆的面积 (C语言代码)

摘要:解题思路:圆的面积S=π×(r^2注意事项:π参考代码:#include <stdio.h>int main(){    double a,s;    double c=3.1415; scanf("……

P1006 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d,i,k;    long sum;    char IP[100];    get……

【回文数(二)】 (C语言代码)

摘要:解题思路:在while(1)大循环中,没有结果不出来注意事项:数组要赋初值参考代码:#include "iostream" using namespace std; #define MAXSIZE……