main.cpp 327 B

12345678910111213
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. float annualSalary;
  5. cout << "Please enter you annual salary" << endl;
  6. // cin >> annualSalary;
  7. // cout << "Your monthly salary is " << annualSalary / 12<<endl;
  8. cout << "Size of float" << sizeof(float) << endl;
  9. cout << INT_MAX<<endl;
  10. return 0;
  11. }