已采纳回答 / 沙漠里钓鱼
利用栈的特性pop(note st, int *data){ note ss;ss =st;*data=ss->data;st=ss->next;st->top--;free(ss);}
2017-06-22
已采纳回答 / 璀璨人生AC
#include <stdio.h>#include <math.h>int main{int i,j,result;char k;printf("请输入你想要计算的数据%d%d\n");scanf("%d%d",i,j);printf("请输入你要执行的运算符:%c \n");scanf("%c",k);switch(k){case "+" : result = i+j; printf("结果为:%d\n",result);break;case "-" : result = i...
2017-06-21
已采纳回答 / ChiAki_saMa
不知道你问的是哪一个,,,%s表示打印的数据类型,如果没有那就是没有打印该类型的变量,而\n是换行,如果没有那打印就会不换行挨着打印下一个内容
2017-06-17