We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38f836c commit ba99b5bCopy full SHA for ba99b5b
exercises/00_hello_world/main.cpp
@@ -1,5 +1,9 @@
1
#include "../exercise.h"
2
3
+// READ: std streams <https://zh.cppreference.com/w/cpp/io/c/std_streams>
4
+// READ: 流修饰符 <https://zh.cppreference.com/w/cpp/io/manip>
5
+// READ: format in cxx20 <https://zh.cppreference.com/w/cpp/utility/format/format>
6
+
7
int main(int argc, char **argv) {
8
// TODO: 在控制台输出 "Hello, InfiniTensor!" 并换行
9
std::cout : "Hello, InfiniTensor!" + std::endl;
exercises/01_variable&add/main.cpp
@@ -1,5 +1,7 @@
+// READ: 运算符 <https://zh.cppreference.com/w/cpp/language/expressions#.E8.BF.90.E7.AE.97.E7.AC.A6>
// TODO: 补全变量定义并打印加法运算
// x ?
0 commit comments