温馨提示:程序调试一定在英文方式下 在答案处,第1题上传程序截图或直接写出程序,第2题写出程序的运行结果。标清序号 1. 编写程序实现: (1) ************************ HELLO ! HOW ARE YOU! ************************* (2) 编写程序,打印输出以下图案。(提示:利用 printf ,输出图案) * * * * * * * * * * * * * * * 2. 调试运行下列程序,看看得到什么结果? (1)#include
int main() { printf("10+5=%d\n",10+5); return 0; } (2) #include
int main() { int a,b; a=10; b=5; printf("10+5=%d\n",a+b); return 0; } (3)#include
int main() { float a,b; a=10; b=5; printf("10+5=%f\n",a+b); return 0; }