「Swift入門」repeat-whileで繰り返し処理サンプル
書式
repeat
{
statement(s);
}while( condition );
サンプルコード
var m= 15
repeat{
print( “m の値 \(m)")
m = m + 1
}while m < 20
Coding Changes the World
書式
repeat
{
statement(s);
}while( condition );
サンプルコード
var m= 15
repeat{
print( “m の値 \(m)")
m = m + 1
}while m < 20