首页 > 其他分享 >实验1

实验1

时间:2024-03-16 22:22:40浏览次数:22  
标签:main return int pause 实验 printf include

`#include <stdio.h>

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

system("pause");
return 0;
}`

`#include <stdio.h>

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

system("pause");
return 0;
}`

`#include <stdio.h>

include <stdlib.h>
int main(){
printf(" O \t O\n");
printf("\t\n");
printf("I I\tI I\n");

system("pause");
return 0 ;
}`

`// 从键盘上输入三个数据作为三角形边长,判断其能否构成三角形
// 构成三角形的条件: 任意两边之和大于第三边

include <stdio.h>
include <stdlib.h>
int main()
{
float a, b, c;
// 输入三边边长
scanf("%f%f%f", &a, &b, &c);
// 判断能否构成三角形
// 补足括号里的逻辑表达式
if(a+b>c && b+c>a && c+a>b)
printf("能构成三角形\n");
else
printf("不能构成三角形\n");
system("pause");
return 0;
}`

`#include <stdlib.h>

include <stdio.h>
int main()
{
char ans1, ans2; // 用于保存用户输入的答案
printf("每次课前认真预习、课后及时复习了没? (输入y或Y表示有,输入n或N表示没有) : ");
ans1 = getchar(); // 从键盘输入一个字符,赋值给ans1
getchar(); // 思考这里为什么要加这一行。试着去掉这一行,看看对运行有没有影响。
printf("\n动手敲代码实践了没? (输入y或Y表示敲了,输入n或N表示木有敲) : ");
ans2 = getchar();
if ((ans189||ans1121)&&(ans289||ans2121)) // 待补足,判断用户回答ans1和ans2都是小写y或大写Y
printf("\n罗马不是一天建成的, 继续保持哦:)\n");
else
printf("\n罗马不是一天毁灭的, 我们来建设吧\n");

system("pause");

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("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);
printf("x = %lf, y = %lf\n",x, y);
return 0;
}`

`// 计算10亿秒约等于多少年,并打印输出

include <stdio.h>
include <stdlib.h>
int main()
{
int year;
year=10000000000/31536000;

// 补足代码
// ×××
printf("10亿秒约等于%d年\n", year);
system("pause");
return 0;
}`

include <stdio.h>

include <math.h>
include <stdlib.h>
int main()
{
double x, ans;

scanf("%lf", &x);
ans = pow(x, 365);
printf("%.2f的365次方: %.2f\n", x, ans);
system("pause");
return 0;
}

`#include <stdio.h>

include <math.h>
include <stdlib.h>
int main()
{
double x, ans;

while(scanf("%lf", &x) != EOF)
{
ans = pow(x, 365 );
printf("%.2f的 365 次方: %.2f\n", x, ans);

}
system("pause");

return 0 ;

}`

`#include<stdio.h>

include<stdlib.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;
area=sqrt(s(s-a)(s-b)*(s-c));
printf("面积为%.3f",area);
}
system("pause");
return 0;
}`

标签:main,return,int,pause,实验,printf,include
From: https://www.cnblogs.com/FuBuKi2/p/18077772

相关文章

  • 实验1
    #include<stdio.h>intmain(){ printf("o\n"); printf("<H>\n"); printf("II\n"); printf("o\n"); printf("<H>\n"); printf("II\n"); return0;}#inc......
  • 【二】【单片机】有关独立按键的实验
    自定义延时函数Delay分别用Delay.c文件存储Delay函数。用Delay.h声明Delay函数。每次将这两个文件复制到工程中,直接使用。//Delay.cvoidDelay(unsignedintxms)//@11.0592MHz{while(xms--){unsignedchari,j;......
  • 实验1 C语言开发环境使用和数据类型,运算符,表达式
    #include<stdio.h>intmain(){printf("O\n");printf("<H>\n");printf("II\n");return0;}#include<stdio.h>intmain(){printf("O\n");printf("<H>\n");print......
  • 瑞熙贝通实验室物联网管理平台新升级|支持远程开门视频监控与电源控制以及环境监测
    瑞熙贝通实验室智能物联网管控平台:利用“互联网+与物联网技术”有机融合,对实验室的用电安全监测、实验室环境异常监测(颗粒物监测、明火监测、可燃气体、烟雾监测、温湿度传感器、红外人体感应)、实验室人员安全准入、万物互联等进行有效感知识别,运用人脸识别、门禁系统、传感器......
  • c语言实验一
    #include<stdio.h>#include<stdlib.h>intmain(){printf("o\to\n");printf("<H>\t<H>\n");printf("II\tII\n");system("pause");return0;}#include&......
  • 基于Java+SpringBoot的开放实验室管理系统子系统毕业设计(源码+论文)
    作者主页:Java程序员老张主要内容:SpringBoot、Vue、SSM、HLMT、Jsp、PHP、Nodejs、Python、爬虫、数据可视化、小程序、安卓app等设计与开发。收藏点赞不迷路 关注作者有好处文末获取源码技术选型【后端】:Java【框架】:SpringBoot【前端】:vue【JDK版本】:JDK1.8【服......
  • c语言程序设计——实验报告一
    c语言程序设计——实验报告一实验项目名称:实验一熟悉C语言运行环境实验项目类型:验证性实验日期:2023年3月14日一、实验目的下载安装Devc6.0程序。了解在该系统上如何进行编辑、编译、连接和运行一个C程序。通过运行简单的C程序了解C程序的特点。二、实验硬、软件环境W......
  • 南京邮电大学C++实验(一)类和对象的定义及使用(仅参考)
    实验名称:类和对象的定义及使用一、实验目的和要求(1)掌握类与对象的定义与使用方法,理解面向对象方法中通过对象间传递消息的工作机制。(2)正确掌握类的不同属性成员的使用方法。(3)掌握构造函数与析构函数的概念,理解构造函数与析构函数的执行过程。(4)掌握友元函数和友元类的定义......
  • 实验1
    task1include<stdio.h>intmain(){printf("OO\n");printf("\n");printf("IIII\n");return0;}task2include<stdio.h>intmain(){floata,b,c;scanf("%f%f%f",&a,&b......
  • 实验一 邵铭修 202383310026
    task1}点击查看代码#include<stdio.h>intmain(){ printf("o\n"); printf("<H>\n"); printf("II\n"); printf("o\n"); printf("<H>\n"); printf("II\n"); return0;![](ht......