C++ examples for Data Type:Array
Select elements from two arrays of strings.
#include <iostream> #include <string> using namespace std; string tens_names[ ] = {"", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety" }; string units_names[ ] = {"", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine" }; int main()/* w w w . j av a 2s .c om*/ { int n = 0; cout << "Enter a number from 20 to 99: "; cin >> n; int tens_digits = n / 10; int units_digits = n % 10; cout << "The number you entered was "; cout << tens_names[tens_digits] << " "; cout << units_names[units_digits] << " "; return 0; }