摘要: #include<stdio.h> main(){ int a=2; int b=6; printf("%d%d\n",a,b); } #include<stdio.h> main() { float m=1.23; double n=4.56; printf("%f%lf\n",m,n); } # 阅读全文
posted @ 2021-10-18 20:30 澄憕 阅读(36) 评论(0) 推荐(0)
摘要: 一、编写程序。 编写程序,输出“我爱C语言!”。 #include<stdio.h> main() { printf("我爱学习C语言!"); } 分行输出自己的专业和姓名。 #include<stdio.h> main() { printf("计算机科学与技术\n"); printf("许志威\n 阅读全文
posted @ 2021-10-18 20:27 澄憕 阅读(19) 评论(0) 推荐(0)