tempCodeRunnerFile.cpp 135 B

123456789
  1. #include <iostream>
  2. using namespace std;
  3. main(){
  4. int n;
  5. cout << "输入一个三位正整数:";
  6. cin >> n ;
  7. return 0;
  8. }