私は取得していますエラーの無い試合を得るのですか 10:13: error: no match for 'operator^' (operand types are 'std::basic_ostream<char>' and 'int')
10:13: note: candidates are:
In file included from /usr/include/c++/4.9/ios:4
私はハスケルを新しくしています。ここでは無限ループが発生していますが、理由はわかりません。 module Main where
pow :: Int -> Int -> Int
pow x 0 = 1
pow x y = x * pow x y-1
main :: IO()
main = print(pow 2 3)
Kyle's You Dont Know Jsで「グラマー」の章を進んでいます。 this link at MDN 1として 、...++Postfix incrementはPrefix increment++...さえ& =よりも優先されています。しかし、javascriptでは、次のコードはそうでないことを証明しているようです。 var a = 1;
var b = a++; // b =
プログラムの問題は、プログラムが印刷されます。4.私の質問は、for ++で何をしますか? forループが実行されるとき、私は== intially、forループが実行され、今はi = 2だと思っているので、私は++を少し捨てていますが、for +思考は、それがI = 1からに行くということであるI = 3 public class LoopExample {
public stati