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

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

时间:2024-03-17 21:57:14浏览次数:29  
标签:main pause return int 数据类型 运算符 printf include 表达式

task1
`#include<stdio.h>

include<stdlib.h>

int main()
{

printf(" o \t  o\n");
  printf("<H>\t <H>\n");
  printf("I I\t 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) && (b + c > a) && (a + c > b))
    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();  //去掉之后,输入一个n显示毁灭,输入一个y显示建成,作用:getchar将回车吞掉 

ans2 = getchar();

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

    printf("\n罗马不是一天毁灭的,我们一起来建设吧\n");

system("pause:");

return 0;

}
`




task4

include<stdio.h>

include<stdlib.h>

int main()
{
double x, y;
int a1, a2, a3;
char c1, c2, c3;

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);

scanf("%lf%lf", &x, &y);
printf("x= %lf, y= %lf\n", x, y);

system("pause:");
return 0;

}
`

task5
`

include <stdio.h>

include <stdlib.h>

int main()
{
int year;
float s;

scanf("%f",&s);

year=(int)(s/(60*60*24*365)+0.5);

printf("10亿秒约等于%d年\n",year);

system("pause:");
return 0;

}
`

task6
`

include<stdio.h>

include<stdlib.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);

}

system("pause:");
 return 0;

}`

task7

`

include<stdio

include<stdlib.h>

int main()
{
double F, C;

while(scanf("%lf", &C) != EOF) //没有分号!!!!
{
    F = C * 9.0 / 5 + 32;

    printf("摄氏度C=%.2lf时,华氏度F=%.2lf\n", C, F);
    printf("\n");
}

system("pause:");

return 0;

}
`

task8
`

include <stdio.h>

include <stdlib.h>

include <math.h>

int main() {
double s, area;
int a, b, c;
while (scanf("%d%d%d", &a, &b, &c) != EOF) {
s = (a + b + c) / 2.0; // The result is a decimal only if at least one operand is a decimal
area = sqrt(s * (s - a) * (s - b) * (s - c);

    printf("a=%d, b=%d, c=%d, area=%.3f\n", a, b, c, area);
}
system("pause:");

return 0;

}
`

标签:main,pause,return,int,数据类型,运算符,printf,include,表达式
From: https://www.cnblogs.com/wh2hzh/p/18079260

相关文章

  • 位运算符的计算
    目录位运算符学习一、二进制中的源码、反码、补码二、java中的位运算符位运算符学习一、二进制中的源码、反码、补码符号有符号数用最高位的0和1表示正数和负数,比如0000000111111100最 高位是0,所以该数字为正数。无符号数全部二进制均代表数值。有符号数的性......
  • 实验1 C语言开发环境使用和数据类型、运算符、表达式
    点击查看代码#include<stdio.h>#include<stdlib.h>intmain(){ printf("oo\n"); printf("<H><H>\n"); printf("IIII\n"); system("pause"); return0;}点击查看代码#include<stdio......
  • 代码随想录算法训练营第十天|LeetCode 20.有效的括号、1047.删除字符串中的所有相邻重
    20.有效的括号题目链接:https://leetcode.cn/problems/valid-parentheses/description/解题思路:题目转化:三种类型的括号,需要做匹配匹配规则是:左右括号的类型要匹配、数量要一致,而且要按照顺序匹配例子是:“()”、“(){}[]”、“(([]))”条件转化:按照顺序匹配:......
  • 实验1 C语言开发环境使用和数据类型、运算符、表达式
    ......
  • add魔术方法对象重写加法运算符
    对象重载add魔术方法#__add__魔术方法(与之相关的__radd__反向加法)''' 触发时机:使用对象进行运算相加的时候自动触发 功能:对象运算 参数:二个对象参数 返回值:运算后的值''''''类似的还有如下等等(了解): __sub__(self,other)定义减法的行为:- __mul__(......
  • Delphi 基本类型、数据类型
    分类范围字节备注简单类型序数整数Integer-2147483648..21474836474有符号32位Cardinal0..42949672954无符号32位Shortint-128..1271有符号8位Smallint-32768..327672有符号16位Longint-2147483648..21474836474有符号32位In......
  • Java 8中 lambda表达式、Stream API的常见用法
    1、取出集合中的某个字段://拿到车辆idsList<Long>carIds=parkCarInDbList.stream().map(ParkCar::getId).collect(Collectors.toList());2、集合直接进行遍历然后进行相关操作:List<Car>cars=carService.getListByCarId(carIds);cars.forEach(car->......
  • python疑难杂症(9)---python的数据类型字典(dict)的创建、访问、修改、删除等方法汇总
    在Python中,字典(Dictionary)是一种内置的数据烈性,是无序的数据结构,用于存储键值对(key-value)。字典中的每个元素由一个键(key)和一个对应的值(value)组成,键和值之间使用冒号(:)进行分隔,每个键值对之间使用逗号(,)进行分隔。字典中的键必须是唯一的,而值可以是任意类型的对象,字典可以用来存......
  • c++中 int, long long, double 等数据类型的长度及范围整理
    原文链接:https://blog.csdn.net/mmk27_word/article/details/84378346byte:字节bit:位短整型short:所占内存大小:2byte=16bit;所能表示范围:-3276832767;(即-2^152^15-1)整型int:所占内存大小:4byte=32bit;所能表示范围:-21474836482147483647;(即-2^312^31-1)unsigned:所......
  • 实验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......