摘要: part1总结:scanf需要输入&取址; %d以整形输出,%c以字符形式输出,%s以字符串形式输出,%f以浮点形式输出,%o以八进制形式输出 #include <stdio.h> int main() { double a,b,c; scanf("%lf %lf %lf", &a, &b, &c) 阅读全文
posted @ 2019-11-05 19:47 张张hh 阅读(136) 评论(3) 推荐(1)