検索
Results of 1 - 3 of about 3 for squared (0.032 sec.)
- 高階関数 - Rust By Example 日本語版 11905
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
値の合計を求める。 println!("Find the sum of all the squared odd numbers under 1000"); let upper = 1000; // Imp...
r n in 0.. { // Square the number // 値を2乗 let n_squared = n * n; if n_squared >= upper { // Break loop if...
に達した場合、ループを終了 break; } else if is_odd(n_squared) { // Accumulate value, if it's odd // 奇数ならば値...
を値を足しあわせていく。 acc += n_squared; } } println!("imperative style: {}", acc); // Fun...
- https://man.plustar.jp/rust/example/fn/hof.html - [similar]
- Rust By Example 日本語版 8185
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
なります。 fn main() { let x = 5u32; let y = { let x_squared = x * x; let x_cube = x_squared * x; // This expre...
d to `y` // この式は`y`に代入されます。 x_cube + x_squared + x }; let z = { // The semicolon suppresses this...
値の合計を求める。 println!("Find the sum of all the squared odd numbers under 1000"); let upper = 1000; // Imp...
r n in 0.. { // Square the number // 値を2乗 let n_squared = n * n; if n_squared >= upper { // Break loop if...
- https://man.plustar.jp/rust/example/print.html - [similar]
- 式 - Rust By Example 日本語版 7775
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
なります。 fn main() { let x = 5u32; let y = { let x_squared = x * x; let x_cube = x_squared * x; // This expre...
d to `y` // この式は`y`に代入されます。 x_cube + x_squared + x }; let z = { // The semicolon suppresses this...
- https://man.plustar.jp/rust/example/expression.html - [similar]
PREV
1
NEXT