描述 计算a加b。 输入 一行,用空格分开的两个整数a和b。 其中0≤a, b≤10000。 输出 一个整数,为a加b的和。 样例输入 1 2 样例输出 3 My code // CPPConsoleApplication1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> /* 3 4 7 */ #define BLANK 32 #define MAX 1024 extern int isdigit(int c); extern int isspace(int c); extern char* strcpy(char* _Dest, const char* _Source); extern char* strncpy(char* _Dest, const char* _Source, size_t _Count); extern long strtol(const char* _Str, char** _EndPtr, int _Radix); extern int strcmp(const char* s1, const char* s2); int islegalnum(int num) { return (num<=0 || num>=1000) ? 0 : 1; } bool is