已知总内存和已使用内存,怎么设计一个程序求有多少内存可使用(编程求支援)
int total=100;总内存 int used=50;已使用内存 int other=0; 剩余内存 other=total-used;