实验1 C语言输入输出和简单程序编写
1.实验任务1
task1_1源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 printf(" 0 \n"); 6 printf("<H>\n"); 7 printf("I I\n"); 8 printf(" 0 \n"); 9 printf("<H>\n"); 10 printf("I I\n"); 11 12 system("pause"); 13 14 return 0; 15 }
task1_1运行截图:
task1_2源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 printf(" o o\n"); 6 printf("<H> <H>\n"); 7 printf("I I I I\n"); 8 9 system("pause"); 10 11 return 0; 12 }
task1_2运行截图:
2.实验任务2
task2源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 float a, b, c; 6 scanf("%f%f%f", &a, &b, &c); 7 if( a > 0 && b > 0 && c > 0 && a + b > c && a + c > b && b + c > a) 8 printf("能构成三角形\n"); 9 else 10 printf("不能构成三角形"); 11 12 system("pause"); 13 return 0; 14 }
task2运行截图:
3.实验任务3
task3源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 char ans1, ans2; 6 printf("每次课前认真预习、课后及时复习了没?(输入y或Y表示有,输入n或N表示没有):"); 7 ans1 = getchar(); 8 getchar(); 9 printf("\n动手敲代码实践了没?(输入y或Y表示有,输入n或N表示没有):"); 10 ans2 = getchar(); 11 12 if((ans1 == 'y' || ans1 == 'Y')&&(ans2 == 'y' || ans2 == 'Y')) 13 printf("\n罗马不是一天建成的,继续保持:)\n"); 14 else 15 printf("\n罗马不是一天毁灭的,我们来建设吧\n"); 16 17 system("pause"); 18 19 return 0; 20 }
task3运行截图:
回答问题:删去getchar()后,回答第一个问题后结束;原因是ans2的值是回车,而getchar()用于删去回车。
4.实验任务4
task4源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 double x, y; 6 char c1, c2, c3; 7 int a1, a2, a3; 8 9 scanf("%d%d%d", &a1, &a2, &a3);//原scanf("%d%d%d", a1, a2, a3);// 10 printf("a1 = %d, a2 = %d, a3 = %d\n",a1,a2,a3); 11 12 scanf("%c%c%c", &c1, &c2, &c3); 13 printf("c1 = %c, c2 = %c, c3 = %c\n",c1,c2,c3); 14 15 scanf("%lf%lf", &x,&y);//原scanf("%f%lf", &x,&y);// 16 printf("x=%f,y=%lf\n",x,y); 17 18 system("pause"); 19 return 0; 20 }
task4运行截图:
5.实验任务5
task5源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 int year; 6 double seconds=1000000000; 7 double years=seconds/(3600*24*365); 8 9 if(years-(int)years<0.5) 10 year=(int)years; 11 else 12 year=(int)years + 1; 13 14 printf("10亿秒约等于%d年\n",year); 15 16 system("pause"); 17 return 0; 18 }
task5运行截图:
6.实验任务6
task6源代码:
1 #include <stdio.h> 2 #include <math.h> 3 #include <stdlib.h> 4 int main() 5 { 6 double x, ans; 7 8 while(scanf("%lf",&x)!= EOF) 9 { 10 ans = pow(x,365); 11 printf("%.2f的365次方:%.2f\n",x,ans); 12 printf("\n"); 13 } 14 system("pause"); 15 return 0; 16 //说明:1. C语言中,常使用line8这样的用法,实现多组数据输入,直至用户按下 Ctrl+Z 终止输入,结束循环。2. double类型的变量,在输入时,格式控制符必须使用%lf(注意:修饰符是小写字母l,不是数字1) 17 }
task6运行截图:
7.实验任务7
task7源代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 double f,c; 6 while(scanf("%lf",&c)!= EOF) 7 { 8 f=c*1.8+32; 9 printf("摄氏度c=%.2f时,华氏度f=%.2f\n",c,f); 10 printf("\n"); 11 } 12 13 system("pause"); 14 return 0; 15 }
task7运行截图:
8.实验任务8
task8源代码:
1 #include <stdio.h> 2 #include <math.h> 3 #include <stdlib.h> 4 int main() 5 { 6 double a,b,c,area,s; 7 while(scanf("%lf%lf%lf",&a,&b,&c)!=EOF) 8 { 9 s=(a+b+c)/2; 10 area=sqrt(s*(s-a)*(s-b)*(s-c)); 11 printf("a=%d,b=%d,c=%d,area=%.3f\n",(int)a,(int)b,(int)c,area); 12 printf("\n"); 13 } 14 system("pause"); 15 return 0; 16 }
task8运行截图:
实验总结:
1、源文件只能存在一个[int main()]函数;
2、[#include <math.h>]容易漏写;
3、循环语句[while(scanf("%lf",&x)!= EOF)],按3下ctrl+z终止。