- 博客(3)
- 收藏
- 关注
原创 C语言学习Day3
常用的数据输入\输出函数scanf("%c",&a) 修改变量的值,传变量的地址printf(“a=%c”,a)只是使用变量的值,传变量就行&1、scanf函数#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>#include <stdlib.h>//scanf等待输入数据int main(){ int i; char c; scanf("%d", &i);//阻塞函数 pri
2020-12-24 01:20:27 532
原创 C语言学习Day2
小理解:a=bc,计算机的理解是bc先运算,运算结果在赋值给a,运算过程与a无关.1.浮点型数据浮点数精度丢失float的精度只到6-7位,可以用double是15-16.#include <stdio.h>#include <stdlib.h>//防止精度丢失int main(){ float a = 1.23456789e10,b; b = a + 20; printf("a=%f,b=%f\n",a,b); //float的精度只到6-7位,可以用dou
2020-12-22 22:24:23 147
原创 c语言学习Day1
跟着王道c语言督学营视频:b站:王道训练营-c语言教程书籍:跟着“龙哥”学C语言编程Hello-world;了解了如何建立项目,讲述了断点,以及调试窗口,#include <stdio.h>//预处理器指令,告诉 C 编译器在实际编译之前要包含 stdio.h 文件。#include <stdlib.h>int main(){ int i = 10; printf("hello world\n"); system("pause"); //暂停运行,以便
2020-12-21 21:43:46 1334
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人