这是我到目前为止所做的。我无法打印数组中奇数的总数以及奇数的总和。
main :: IO ()
main = do
args <- getArgs -- now `args :: [String]`
contents <- B.readFile (head args)
print (parseCSV contents)
我已经尝试了所有的东西来打印奇数但我还没有能够。它在我运行程序时保持输出为零。
答案 0 :(得分:0)
你的for循环相互混合。
for(int i=0;i<rows;i++)
{
for(int j=0; j<columns;j++)
{
array[i][j]=scan.nextInt();
num=array[i][j];
// you can do operation with odd count and sum here
}
或者您可以使用相同的两个for循环遍历2D数组中的数字,只计算奇数并找到总和。