自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 关于“contiune”在C中的使用问题

#include<stdio.h> void display(char cr, int lines, int width); int main(void) { int ch; int rows,cols; printf("请输入一个字母和两个数字: \n"); while((ch = getchar()) != '\n') { if ((scanf("%d %d", &row...

2020-03-30 14:35:20 236

原创 (小白的自我学习)C primer PIus 书中打印浮点值的问题(使用编译器C-Free )

#include<stdio.h> int main(void) { float aboat = 32000.0; double abet = 2.14e9; long double dip = 5.32e5; printf("%f can be written %e\n", aboat, aboat); printf("and it is %a in hexadecimal, pow...

2019-10-15 14:24:37 122

原创 C-Free 中遇到的数据超出问题

C-Free5.0 中的long long 类型 #include<stdio.h> int main(void) { unsigned int un = 3000000000; short end = 200; long big = 65537; long long verybig =12345678908642; printf("un = %u and not %d\n",un ,...

2019-10-12 15:53:52 310 2

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除