摘要: 第一种:使用string.h中的strrev函数 #include <iostream>#include <cstring>using namespace std; int main(){ char s[]="hello"; strrev(s); cout<<s<<endl; return 0;}第 阅读全文
posted @ 2019-05-23 11:11 Link_Z 阅读(563) 评论(0) 推荐(1) 编辑
摘要: int本身也要用一串字符表示,前后没有双引号,告诉编译器把它当作一个数解释。缺省情况下,是当成10进制(dec)来解释,如果想用8进制,16进制,怎么办?加上前缀,告诉编译器按照不同进制去解释。8进制(oct) 前缀加0,16进制(hex) 前缀加0x或者0X。 string前后加上双引号,告诉编译 阅读全文
posted @ 2019-05-23 10:43 Link_Z 阅读(2154) 评论(0) 推荐(0) 编辑