11 2019 档案

摘要:// 一元二次方程求解 // 重复执行, 直到按Ctrl+D或Ctrl+E结束 // #include <math.h> #include <stdio.h> #include <stdlib.h> int main() { float a, b, c, x1, x2; float delta, r 阅读全文
posted @ 2019-11-20 00:13 Uzivn 阅读(101) 评论(4) 推荐(0)
摘要:int main() { int x=1234; float f=123.456; double m=123.456; char ch='a'; char a[]="Hello, world!"; // 定义一个数组a,数组中连续存放了字符串常量hello,world! int y=3, z=4; 阅读全文
posted @ 2019-11-06 00:28 Uzivn 阅读(102) 评论(3) 推荐(0)