Skip to content
Snippets Groups Projects
variable_division_entiere.cpp 142 B
Newer Older
  • Learn to ignore specific revisions
  • #include <iostream>
    using namespace std;
    
    int main () {
        int x, y;
        x = 5*(2/5);
        y = (5*2)/5;
        cout << x << ", " << y << endl;
    }