matlab中怎么用switch语句,来判断一个数能否整除5
发布网友
发布时间:2022-04-29 21:51
我来回答
共2个回答
热心网友
时间:2022-06-23 17:17
用if 和 rem可以实现 可以整除s为true 反之为false
如if rem(i,5)==0
s=‘ture’
else
s=’false‘
end
希望采纳!
热心网友
时间:2022-06-23 17:18
运行截图:程序:#include <iostream>
using namespace std;
int main(void){
int n;
cin >> n;
switch(n % 5){
case 0:
cout << "能被5整除" << endl;
break;
default:
cout << "不能被5整除" << endl;
break;
}
system("PAUSE>NUL");
return 0;
}