首页 > 其他分享 >实验1 C语言开发环境使用和数据类型、运算符、表达式

实验1 C语言开发环境使用和数据类型、运算符、表达式

时间:2024-03-12 23:23:04浏览次数:33  
标签:lf main return int 数据类型 C语言 运算符 printf include

task1

点击查看代码
#include <stdio.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;
}

点击查看代码
#include <stdio.h>

int main()
{
    printf(" o\t");
	printf(" o\n");
	printf("<H>\t");
	printf("<H>\n");
	printf("I I\t");
	printf("I I\n");
	system("pause");
	return 0;
}

task2

点击查看代码
#include<stdio.h>
#include<stdlib.h>

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

	system("pause");
    return 0;
}



task3

点击查看代码
#include<stdio.h>
#include<stdlib.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");

	system("pause");
	return 0;
}





去掉后程序在输入第二个回答后自动关闭
因为在回答时输入了“答案”“回车”“答案”,getchar()是为了抵消中间回车对第二个答案的影响。

task4

点击查看代码
#include<stdio.h>
#include<stdlib.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);

	scanf("%c%c%c",&c1,&c2,&c3);
	printf("c1=%c,c2=%c,c3=%c\n",c1,c2,c3);

	scanf("%lf%lf",&x,&y);   //%f,%lf",&x,&y改为%lf,%lf",&x,&y
	printf("x=%f,y=%lf\n",x,y);

	system("pause");

	return 0;
}

task5

点击查看代码
#include<stdio.h>
#include<stdlib.h>

int main()
{
	int year;
	year=1000000000;
	year=(year+0.5)/3600/24/365;

	printf("十亿秒约等于%d年\n",year);
	
	system("pause");
	return 0;
}

task6

点击查看代码
#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);
		printf("\n");
	}

	return 0;
}

task7

点击查看代码
#include<stdio.h>
#include<math.h>

int main()
{
	double c,f;

	while(scanf("%lf",&c)!=EOF)
	{
		f=(9*c)/5+32;
		printf("摄氏度c=%.2f时,华氏度f=%.2f\n",c,f);
		printf("\n");
	}

	system("pause");
	return 0;
}


task8

点击查看代码
#include<stdio.h>
#include<stdlib.h>
#include<math.h>

int main()
{
	double s,a,b,c,S;

	while(scanf("%lf%lf%lf",&a,&b,&c)!=EOF)
	{
		s=(a+b+c)/2;
		S=sqrt(s*(s-a)*(s-b)*(s-c));
		printf("三角形的面积是:%.3f\n",S);
		printf("\n");
	}
	system("pause");
	return 0;
}

标签:lf,main,return,int,数据类型,C语言,运算符,printf,include
From: https://www.cnblogs.com/yu224hong/p/18069611

相关文章

  • C语言判断文件夹或者文件是否存在的方法
    方法一:access函数判断文件夹或者文件是否存在在C语言中,判断文件或文件夹是否存在,可以使用标准库函数access。以下是一个简单的例子:#include<stdio.h>#include<stdlib.h>#include<unistd.h>intmain(){constchar*file="example.txt";if(access(file,F_......
  • 【C语言】用C语言写一个猜数字游戏
    目录1.游戏规则2.实现逻辑3.代码展示4.结果展示1.游戏规则1.游戏开始,电脑会从1-100随机生成一个数2.玩家在屏幕上输入猜的数字3.电脑根据这两个数比较大小;若是猜大了,屏幕显示猜大了,若是猜小了,屏幕显示猜小了。4.循环上面的操作,直至猜正确。2.实现逻辑1.首先......
  • C语言字符函数和字符串函数
    前言今天这篇博客咱们一起来认识一些特殊的函数,在编程的过程中,我们经常要处理字符和字符串,为了方便字符和字符串,C语言提供了一些库函数,让我们一起看看这些函数都有什么功能吧!!!个人主页:小张同学zkf若有问题评论区见感兴趣就关注一下吧目录 1.字符分类函数2.字符......
  • 实验1 C语言输入输出和简单程序编写
    实验任务11_11#include<stdio.h>2intmain()3{4printf("O\n");5printf("<H>\n");6printf("II\n");78printf("O\n");9printf("<H>\n");10......
  • C语言学习笔记day3
    1.逗号运算符           逗号运算符连接的表达式,从左至右依次执行,最后一个逗号后面的表达式结果作为   整体的逗号表达式的结果2.sizeof运算符        sizeof(数据类型/变量名)        获得一个数据类型或者变量在内存中所占的......
  • c语言函数传递数组名
    c语言自定义函数中可以在形参中可以使用数组名作为传递代码示例如下#include<stdio.h>floatave(floata[]){ inti; floatb; floatsum=a[0]; for(i=1;i<10;++i) sum=sum+a[i]; b=sum/10; returnb;}intmain(){ floatnum[10],average; inti; for(i=0;i......
  • C语言以空格分割字符串
    方法一、使用<string.h>的strtok()函数原型:char*strtok(char*str1,constchar*str2);头文件:#include<string.h>功能:用指定的分隔符分解字符串参数: char*str1 为要分解的字符串constchar*str2 为分隔符字符串返回值: 返回下一个分割后的(位于最开始的)字......
  • C语言数据结构实现酒店管理
    #include<stdio.h>#include<windows.h>#include<stdlib.h> #include<string.h>//用于用户验证 #defineMAX100//最大房间容量 #defineStytm20#definemAX1024//文件读取字符长 intfileHang(FILE*fp);intlength=0;//房间顺序 typedefintDataType;typ......
  • 实验1 C语言输入输出和简单程序编写
    1#include<stdio.h>usingnamespacestd;intmain(){ printf("O\n"); printf("<H>\n"); printf("II\n"); return0;}2#include<stdio.h>usingnamespacestd;intmain(){floata,b,c; scanf......
  • Java 包装类:原始数据类型与迭代器
    JavaIteratorIterator接口提供了一种迭代集合的方法,即顺序访问集合中的每个元素。它支持hasNext()和next()方法,用于检查是否存在下一个元素以及获取下一个元素。获取Iterator可以使用集合的iterator()方法获取Iterator实例://导入ArrayList类和Iterator类impo......