王雪奇

博客园 首页 新随笔 联系 订阅 管理

2021年11月7日 #

摘要: 1 1.编写程序,定义两个整型变量,复制并输出。 #include<stdio.h> main() { int a=3; int b=5; printf("%d%d\n",a,b); } 2.编写程序,定义一个双精度变量和一个单精度变量,复制并输出。 #include<stdio.h> main() 阅读全文
posted @ 2021-11-07 21:06 雪.?! 阅读(10) 评论(0) 推荐(0) 编辑

2021年10月6日 #

摘要: 编写程序,输出"a56爆大奖在线娱乐爱学习C语言" #include<stdio.h> main() { printf("a56爆大奖在线娱乐爱学习C语言"); } 分行输出自己的专业与姓名 #include<stdio.h> main() { printf("计算机科学与技术\n王雪奇\n"); } 用*号输出C的图案 #inclu 阅读全文
posted @ 2021-10-06 19:16 雪.?! 阅读(15) 评论(0) 推荐(0) 编辑