我在netbeans上导入了一个项目,它说包不存在。 错误在这两行中。
import com.google.common.collect.ArrayListMultimap; 导入com.google.common.collect.Multimap;
答案 0 :(得分:0)
#include <iostream>
#include <string>
auto const text = " year";
auto const text2 = " age";
int main() {
try {
std::string input;
std::getline(std::cin, input);
auto const g1 = std::stoi(input);
std::getline(std::cin, input);
auto const g2 = std::stoi(input);
std::cout << g1 << text;
std::cout << g2 << text2;
std::cout << '\n';
} catch (std::out_of_range const&) {
std::cout << "Please enter an integer\n";
}
}
文件.jar
个文件并添加答案 1 :(得分:0)
我认为您需要在依赖项下添加“guava 19.0.jar”