给定一些数据随机抽取一部分存入一个矩阵,把剩余的存入另一个矩阵用matlab怎么实

2024-11-23 08:07:07
推荐回答(1个)
回答1:

#include
int main()
{
int a,b,c;
printf("Input A and B:");
scanf("%d,%d",&a,&b);
c=a-b;
printf("A-B is %d\n",c);
return 0;
system("pause"); //加多这个看看!
}