3.3 从标准输入读入一个数,把它转为英语单词输出,如读入 234,输出“two three four”。

/* 3.3 从标准输入读入一个数,把它转为英语单词输出,如读入 234,输出“two three four”。 */ #include <iostream> using namespace std; void main() { int a = 0; int b = 0; int c = 0; int d = 0; cin >> a; while (a > 0) { b = a % 10; a =
相关文章
相关标签/搜索