实验1_1

 源码

//打印一个字符小人

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf(" O \n");
printf("<H>\n");
printf("I I\n");
printf(" O \n");
printf("<H>\n");
printf("I I\n");
system("pause");

return 0;
}

 

 

屏幕截图

 

 实验1_2

源码

//打印一个字符小人

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf(" O O\n");
printf("<H> <H>\n");
printf("I I I I\n");


system("pause");

return 0;
}

 

 

屏幕截图

 

实验2

源码

#include <stdio.h>
#include <stdlib.h>
int main()
{
int n,sum;

scanf("%d",&n);

sum=(n+1)*n/2;

printf("sum = %d\n", sum);
system("pause");

return 0;
}

屏幕截图

 算法1,2可以实现 ,而3,4会因为int而抹去小数点后面的数字。

 

 实验3

源码

#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,t;

a=3;
b=4;
printf("a=%d,b=%d\n",a,b);

t=a;
a=b;
b=t;
printf("a=%d,b=%d\n",a,b);
system("pause");

return 0;
}

 

 

屏幕截图

 

 实验4

源码

#include <stdio.h>
#include <stdlib.h>

int main()
{
int x, t, m;

x = 123;
printf("x = %d\n", x);

t=0;

m = x % 10;
t = t * 10 +m;
x = x / 10;

m = x % 10;
t = t * 10 +m;
x = x / 10;

m = x % 10;
t = t * 10 +m;
x = x / 10;

printf("t = %d\n", t);
system("pause");

return 0;
}

 

屏幕截图

 (1)t=654

   (2)组合起来实现的功能是将数字反向排序

实验5

源码

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main()
{
float a, b, c;

scanf("%f%f%f", &a, &b, &c);
if (a+b>c)
printf("能构成三角形\n");
else
printf("不能构成三角形\n");

return 0;
}

 

 

屏幕截图

 

 实验6

源码

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main()
{
int year;
year = 10e9 / (60 * 60 * 24 * 365);
printf("10亿秒约等于%d年\n", year);
return 0;
}

 

屏幕截图

 

 实验7

源码

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main()
{
int n;
srand((unsigned)time(NULL));
n = rand() % 41 + 60;
printf("n = %d\n", n);

return 0;
}

 

屏幕截图

 

 实验8

源码

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main()
{
char ans1, ans2;

printf("每次课前认真预习,课后复习了没?(输入y或Y表示有,输入n或N表示没有):");
ans1 = getchar();

getchar();

printf("\n动手敲代码实践了没?(输入y或Y表示敲了,输入n或N表示木有敲): ");
ans2 = getchar();

if ((ans1 == 'y' || ans1 == 'Y') && (ans2 == 'y' || ans2 == 'Y'))
printf("\n罗马不是一天建成的, 继续保持哦:)\n");
else
printf("\n罗马不是一天毁灭的, 我们来建设吧\n");

return 0;

}

 

屏幕截图