false

  1. S

    C++ Boolean Sürekli False Değerini Döndürüyor

    #include <iostream> using namespace std; bool Testing() { static int Variable = 0; if (Variable == 1) return true; else { Variable = 1; Testing(); } return false; } int main() { if (Testing()) cout << "True"; else cout << "False"; } Yukarıdaki...
Geri
Yukarı