输入“(12+5)*3”,根据内容存入链表。
struct node{
union data{
int number;
char f;
};
struct node * next;
};
注意数字有两位的!!
输入“(12+5)*3”,根据内容存入链表。
struct node{
union data{
int number;
char f;
};
struct node * next;
};
注意数字有两位的!!
main()
{char a;
int b;
printf("Input:");
b=0;
while(1)
{
a=getch();
printf("%c",a);
if (a>=48&&a<=57) b=b*10+a-48;
else break;
}
printf("\n%d",b);
printf("\n%c",a);
getch();
}