PTA
bwerrr_
这个作者很懒,什么都没留下…
展开
-
PTA 6-9 统计各位数字
题目链接 题目代码: #include <stdio.h> int Count_Digit ( const int N, const int D ); int main() { int N, D; scanf("%d %d", &N, &D); printf("%d\n", Count_Digit(N, D)); return 0; } /* 你的代码将被嵌在这里 */ 按照6-7题目的做法: 注意:要考虑到N的...原创 2020-05-15 11:18:44 · 401 阅读 · 0 评论 -
PTA 6-2 多项式求值(C)
题目链接 题目代码: #include <stdio.h> /*注意没给math.h头文件,不能用求幂次函数*/ #define MAXN 10 double f( int n, double a[], double x ); int main() { int n, i; double a[MAXN], x; scanf("%d %lf", &n, &x); for ( i=0; i<=n; i++ ) .原创 2020-05-15 11:19:13 · 263 阅读 · 0 评论