example.cpp - word to num


SUBMITTED BY: Guest

DATE: Dec. 5, 2013, 2:44 p.m.

FORMAT: C++

SIZE: 359 Bytes

HITS: 845

  1. #include <iostream>
  2. #include "ntw.h"
  3. using namespace std;
  4. int main()
  5. {
  6. unsigned long test;
  7. ntw ntw0;
  8. cout << "Example programm for Numder to Word!" << endl;
  9. cout << "Number: ";
  10. cin >> test;
  11. cout << ntw0.NumToWord( test ) << endl;
  12. return 0;
  13. }

comments powered by Disqus