CHAPTER 1. INTRODUCTION
Problem 1.19.6. Write a class called reverse to reverse an unsigned integer. For example, 8602 should be written as 2068
• Write the program above, using only while statements
• Rewrite the program using only for statements
• Rewrite the program using only do while statements
PROBLEM SET
Problem 1.19.7. Write a class called luhn for validating a credit card as described in Fig 1.33. You must write two files luhn.h and luhn.cpp and test your class using the provided file luhntest.cpp Your program must work for all the cases provided in luhntest.cpp. You cannot change anything in the file luhntest.cpp. email only luhn.h and luhn.cpp. Also include screen shot of the program output as a pdf file.