試したこと
https://teratail.com/questions/324307
このサイトを参考にして環境を構築していきました。
実行環境
MacOS
VSCode
階層
cargo new helloで作成されました。
. └── hello ├── Cargo.toml └── src └── main.rs
ファイルの中身
toml
1[package] 2name = "hello" 3version = "0.1.0" 4edition = "2021" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[dependencies] 9proconio = "0.4"
rust
1use proconio::input; 2fn main() { 3 input!{ 4 a:i32, 5 b:i32, 6 } 7 println!("a = {},b = {}",a,b); 8}
エラーコード
code runner で実行しています。
nolun atcoder (work) % cd "/Users/nolun/atcoder/hello/src/" && rustc main.rs && "/Users/nolun/atcoder/hello/src/"main error[E0432]: unresolved import `proconio` --> main.rs:1:5 | 1 | use proconio::input; | ^^^^^^^^ maybe a missing crate `proconio`? error: cannot determine resolution for the macro `input` --> main.rs:3:5 | 3 | input!{ | ^^^^^ | = note: import resolution is stuck, try simplifying macro imports error[E0425]: cannot find value `a` in this scope --> main.rs:7:30 | 7 | println!("a = {},b = {}",a,b); | ^ not found in this scope error[E0425]: cannot find value `b` in this scope --> main.rs:7:32 | 7 | println!("a = {},b = {}",a,b); | ^ not found in this scope error: aborting due to 4 previous errors Some errors have detailed explanations: E0425, E0432. For more information about an error, try `rustc --explain E0425`.
Rustどうしても使いたいです
どなたかご共助願いたいです????
よろしくおねがいします!!
【補足】
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/10 09:53