Advertisement
Guest User

3.2

a guest
May 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3. using namespace std;
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. int i = 0;
  8. cout << "The value of i is "<<i<<endl;
  9. i=5;
  10. cout << "The value of i is "<<i<<endl;
  11. int j = 1;
  12. cout << "The value of j is "<<j<<endl;
  13. int k = i/j;
  14. cout <<k<<endl;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement