摘要: 1 #include 2 #include 3 4 #define pi 3.141592 5 6 void conver_radian(float radian) 7 { 8 int degree,minute,second; 9 float angle,min,sec; 10 11 angle = radian * 180 / pi; 12... 阅读全文
posted @ 2019-03-25 13:59 Jony-2018 阅读(5959) 评论(0) 推荐(0) 编辑
摘要: 示例: # expandtabs 的作用是断句,在这里面的意思是每20个字符断一次,比如说text里面的 username\t 虽然username不够20个字符,但 \t 会把它没有占到的20个字符的位置上全部补成空格 输出如下 阅读全文
posted @ 2019-03-25 13:05 Jony-2018 阅读(622) 评论(0) 推荐(0) 编辑