task1.c
代码
#include<stdio.h> int main() { printf(" O\n"); printf("<H>\n"); printf("I I\n"); return 0; }
运行结果
task1_2.c
代码
#include<stdio.h> int main() { printf(" O" " O\n"); printf("<H>" " <H>\n"); printf("I I" " I I\n"); return 0; }
运行结果
task2.c
代码
include<stdio.h> int main() { float a,b,c; scanf("%f,%f,%f",&a,&b,&c); if(a>0&&b>0&&c>0&&a+b>c&&a+c>b&&b+c>a) printf("能够成三角形\n"); else printf("不能构成三角形\n"); return 0; }
运行结果
task3
代码
#include<stdio.h> int main() { char ans1,ans2; printf("每次课前认真预先·课后及时复习了没有?"); ans1=getchar(); getchar(); printf("\n动手敲代码实践了没有?"); ans2=getchar(); if((ans1=='y'||ans1=='Y')&&(ans2=='y'&&ans2=='Y')){ printf("\n罗马不是一天建成的,继续保持哦:\n"); } else{ printf("\n罗马不是一天毁灭的,我们老来建设吧\n"); } return 0; }
运行结果
会重复出现
因为将空隔作为输入项
test4
代码
#include<stdio.h> int main() { double x,y; char c1,c2,c3; int a1,a2,a3; scanf("%d %d %d",&a1,&a2,&a3);//未加上&号,格式错误 printf("a1=%d,a2=%d,a3=%d\n",a1,a2,a3); getchar(); scanf("%c %c %c",&c1,&c2,&c3); printf("c1=%c,c2=%c,c3=%c\n",c1,c2,c3); getchar(); scanf("%lf %lf",&x,&y);//输入时应该是%lf printf("x=%f,y=%f\n",x,y); return 0; }
运行结果
test5
代码
#include<stdio.h> int main() { int year; year=1000000000/60/60/24/365; printf("10亿秒约等于%d\n",year); return 0; }
运行结果
test6
代码
#include<stdio.h> #include<math.h> int main() { double x,ans; scanf("%lf",&x); ans=pow(x,365); printf("%.2f的365次方:%.2f\n",x,ans); return 0; }
运行结果
test6_2
代码
#include<stdio.h> #include<math.h> int main() { double x,ans; while(scanf("%lf",&x)!=EOF) { ans=pow(x,365); printf("%.2f的365次方:%.2f\n",x,ans); } return 0; }
运行结果
test7
代码
#include<stdio.h> int main() { double c,f; while(scanf("%lf",&c)!=EOF) { f=9*c/5+32; printf("摄氏度c=%.2f时,华氏度f=%.2f",c,f); printf("\n"); } return 0; }
运行结果
test8
代码
#include<stdio.h> #include<math.h> int main() { int a,b,c; double s,area; while(scanf("%d %d %d",&a,&b,&c)!=EOF) { s=(a+b+c)/2.0; area=sqrt(s*(s-a)*(s-b)*(s-c)); printf("a=%d,b=%d,c=%d,area=%.3f",a,b,c,area); printf("\n"); } return 0; }
运行结果
感想:好好看要求,切忌int和double中选择错误
getchar不可或缺
学会sqrt了
标签:main,return,int,scanf,数据类型,C语言,运算符,printf,include From: https://www.cnblogs.com/iamqy/p/17735896.html