发布网友 发布时间:2022-04-22 01:29
共3个回答
热心网友 时间:2023-08-17 05:32
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,c;
puts(请输入被减数和减数");
scanf("%d%d",&a,&b);//不能在sacnf()中写字符串
c=a-b;
printf("商是%d\n",c);
system("pause");
return 0;
}
热心网友 时间:2023-08-17 05:33
typedef struct{//typedef是小写开头!
//注意此处的top是整形指针
int data[Max_Size];
int top;
}SeqStack,*PSeqStack;
热心网友 时间:2023-08-17 05:33
改成这样scanf("%d%d",&a,&b);,scanf()里面不能随便写别的东西的