OSDN Git Service

Update docs/misc/io.md
authorTiger3018 <31267153+Tiger3018@users.noreply.github.com>
Sat, 2 Mar 2019 16:38:50 +0000 (00:38 +0800)
committerGitHub <noreply@github.com>
Sat, 2 Mar 2019 16:38:50 +0000 (00:38 +0800)
Co-Authored-By: yizr-cnyali <yizr_cnyali@qq.com>
docs/misc/io.md

index 986c19f..f4699cb 100644 (file)
@@ -201,7 +201,7 @@ template <typename T> inline T read(){ //声明 template 类,要求提供输入
 }
 ```
 
-如果要分别输入 int 类型的变量 a ,long long 类型的变量 b 和 int128 类型的变量 c ,那么可以写成
+如果要分别输入 `int` 类型的变量 a , `long long` 类型的变量 b 和 `_int128` 类型的变量 c ,那么可以写成
 ```cpp
     a=read<int>();
     b=read<long long>();