重要雪糕

文章
4
资源
0
加入时间
2年10月17天

C语言基础知识----注意事项

Q:程序怎样取得输入、进行输出?A:你的程序应该从标准输入 stdin(‘Standard Input’)获取输入,并将结果输出到标准输出 stdout(‘Standard Output’).例如,在C语言可以使用 ‘scanf’ ,在C++可以使用’cin’ 进行输入;在C使用 ‘printf’ ,在C++使用’cout’进行输出.用户程序不允许直接读写文件, 如果这样做可能会判为运行时错误...

[模板] 字符串处理函数

1.字符串分割函数substr string st = *it; len = st.length(); for(int j = 1; j < len - 1; j++) { fst = st.substr(0, j); 字符串.substr(开始地址, 抽取宽度) lst = st.sub...