11 2019 档案

摘要:Part1: 一元二次方程求解 #include <math.h>#include <stdio.h>#include <stdlib.h>int main() {float a, b, c, x1, x2;float delta, real, imag;printf("Enter a, b, c: 阅读全文
posted @ 2019-11-18 12:09 阅读(173) 评论(2) 推荐(0)
摘要:Part 1 ex2_1.cpp #include <stdio.h>int main() {int x=1234;float f=123.456;double m=123.456;char ch='a';char a[]="Hello, world!"; // 定义一个数组a,数组中连续存放了字符 阅读全文
posted @ 2019-11-06 00:42 阅读(159) 评论(1) 推荐(0)