1 Star 0 Fork 0

sqy/connect-4-artificial-intelligence

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
read_number.m 421 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ricardo Aguiar 提交于 2018-02-13 00:49 . Add files via upload
% Universidade Federal de Mato Grosso
% Instituto de Engenharia
% Inteligência Artificial - 2016/2
%
% Função Octave/MATLAB que implementa
%
% author: raonifst at gmail dot com
function [ num ] = read_number( )
num = str2double(input('Enter an integer (column): ','s'));
while isnan(num) || fix(num) ~= num,
num = str2double(input('Please enter an integer (column): ','s'));
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqyyyyy/connect-4-artificial-intelligence.git
git@gitee.com:sqyyyyy/connect-4-artificial-intelligence.git
sqyyyyy
connect-4-artificial-intelligence
connect-4-artificial-intelligence
master

搜索帮助