PAT乙级1010

#include<stdio.h>
#include<string.h>
int main() {
	int num[1001] = { 0 };
	int a, b;
	//这里为1001更合适(?)  0-1000一共1001个数字
	int test[1001] = { 0 };
	int k = 0;
	char c = '0';
		while (c != '\n') {
            scanf("%d", &b);
			scanf("%d", &a);
            if(a!=0){
            test[k++] = a;
			num[a] = b;
            }
			c = getchar();
		}
    if(k==0&&a==0){
        printf("0 0");
    }
    else{
		for (int i = 0; i < k; i++) {
			num[test[i]] = num[test[i]] * test[i];
			if (i < k - 1)
				printf("%d %d ", num[test[i]], test[i] - 1);
			else
				printf("%d %d", num[test[i]], test[i] - 1);
		}
    }
}

测试点1:结尾单项式指数不为0

测试点3:当test与num大小均为100时,运行结果两种情况:段错误或者运行结果错误

均为1001时,运行结果正确

但为1000时运行结果错误

优化代码:

(1条消息) PAT-1010 一元多项式求导_suxiaorui的博客-CSDN博客

scanf加入while,避免数组使用

上一篇:背包


下一篇:深度学习:多层感知机