@@ -0,0 +1,3 @@
+{
+ "C_Cpp.errorSquiggles": "disabled"
+}
@@ -0,0 +1,9 @@
+#include <iostream>
+using namespace std;
+
+main(){
+ int n;
+ cout << "输入一个三位正整数:";
+ cin >> n ;
+ return 0;