实验二
Posted 12345abcde
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验二相关的知识,希望对你有一定的参考价值。
#include <stdio.h> int main() { int x=1234; float f=123.456; double m=123.456; char ch=‘a‘; char a[]="Hello, world!"; int y=3, z=4; printf("%d %d ", y, z); printf("y=%d, z=%d ", y,z); printf("%8d,%2d ", x,x); printf("%f, %8f, %8.1f, %0.2f, %.2e ",f,f,f,f,f); printf("%lf ",m); printf("%3c ", ch); printf("%s %15s %10.5s %2.5s %.3s ",a,a,a,a,a); return 0; }
#include <stdio.h> int main() { double x,y; char c1,c2,c3; int a1,a2,a3; scanf("%d%d%d",&a1,&a2,&a3); printf("%d,%d,%d ",a1,a2,a3); scanf("%c%c%c",&c1,&c2,&c3); printf("%c%c%c ",c1,c2,c3); scanf("%lf,%lf",&x,&y); printf("%lf,%lf ",x,y); return 0; }
错误处:1.第七行a1,a2,a3前缺少地址符 2.第十一和第十二行前单精度应修改为双精度
#include <stdio.h> int main() { double a,b,c; scanf("%lf %lf %lf",&a,&b,&c); if(a<0||b<0||c<0) printf("不能构成三角形 "); else if(a+b>c&&a+c>b&&b+c>a) { if(a==b&&a==c) printf("构成等边三角形 "); else if(a==b||a==c||b==c) printf("构成等腰三角形 "); else printf("构成一般三角形 "); } else printf("不能构成三角形 "); return 0;}
#include <stdio.h> #include <stdlib.h> int main() { char choice; printf("输入0~9以内的数字,选择屏幕背景色前景色方案: "); printf("1- 黑底绿色 "); printf("2- 白底黑色 "); printf("3- 蓝底白色 "); printf("其他- 黑底白色(默认) "); printf(" 请输入,选择你想使用的屏幕配色方案: "); choice = getchar(); if (choice==‘1‘) { system("color 02"); printf("《黑客帝国》一类的影视剧常见这种屏幕色:) "); } else if(choice ==‘2‘) { system("color f0"); printf("大部分编辑器默认是这种配色:) "); } else if(choice==‘3‘) { system("color 1f"); printf("这是机器蓝屏故障时的不讨喜色:) "); } else { system("color 0f"); printf("控制台程序默认小黑窗:) "); } printf("programming is so fun,just try@_@ "); return 0; }
#include <stdio.h>
int main() { int a,b,c; printf("请输入一个三位以内的十进制整数: "); printf("计算其逆序数 "); scanf("%d",&a);
if(a>=0&&a<10) printf("%d正序和逆序相同",a); else if(a>=10&&a<100) { b=a/10; c=a%10; if(b==c) printf("%d正序和逆序相同",a); else printf("%d正序和逆序不相同",a); } else if(a>=100&&a<=999) { b=a/100; c=a%10; if(b==c) printf("%d正序和逆序相同",a); else printf("%d正序和逆序不相同",a); } return 0;
#include <stdio.h> #include <stdlib.h> int main() { printf("输入年份 月份 "); int year,month; scanf("%d%d",&year,&month"); if(year<0||month<1||month>12) { printf("输入的数据错误! "); exit(0); } if(year>0&&month==1||month==3||month==5||month==7||month==8||month==10||month==12) printf("%d年%d月的天数为:31 ",year,month); if(year>0&&month==4||month==6||month==9||month==11) printf("%d年%d月的天数为:30 ",year,month); if(year%4==0&&year%100!=0||year%400==0&&month==2) printf("%d年%d月的天数为:29 ",year,month); if(year%4!=0&&month==2) printf("%d年%d月的天数为:28 ",year,month); return 0; }
#include <stdio.h> #include <stdlib.h> int main() { printf("输入分数(0~100) "); int score,x; scanf("%d",&score); if (score<0||score>100) { printf("分数不在有效区间内 "); exit(0); } x=score/10; switch(x) { case 1: case 2: case 3: case 4: case 5:printf("不及格 ");break; case 6:printf("及格 ");break; case 7:printf("中等 ");break; case 8:printf("良好 ");break; case 9: case 10:printf("优秀 ");break; } return 0; }