首页 > 编程语言 >实验一 C语言开发环境使用和编程初体验

实验一 C语言开发环境使用和编程初体验

时间:2022-10-16 13:23:30浏览次数:48  
标签:main 初体验 return int scanf 编程 C语言 printf include

//实验一

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

//task1_1.c
#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");

    return 0;
}

实验二

#include<stdio.h>
#include<math.h>
int main()
{
    double x, ans;
    scanf_s("%lf", &x);
    ans = pow(x, 365);
    printf("%.2f的365次方:%.2f\n", x, ans);
    return 0;
}

 

#include <stdio.h>
#include <math.h>

int main()
{
    double x, ans;

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

#include <stdio.h>
#include <math.h>

int main()
{
    double C, F;

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

实验三

 

#include<stdio.h>
#include<math.h>
int main()
{
    int n;
    long double sum, a;
    scanf_s("%d", &n);
    a = pow(2, n);
    sum = (1 - a)/(1-2);
    printf("求和结果为:%lf", sum);
    return 0;
}

实验四

#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("%d,%d,%d\n",a1,a2,a3);
    getchar();
    scanf("%c%c%c",&c1,&c2,&c3);
    printf("%c%c%c\n",c1,c2,c3);
    getchar();
    scanf("%lf,%lf",&x,&y);
    printf("&lf,%lf\n",x,y);

    system("pause");
    return 0;
}

实验五

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<stdlib.h>
int main()
{
    int age1, age2;
    char gender1, gender2;

    scanf("%d%c%d%c", &age1, &gender1, &age2, &gender2);
    printf("age1 = %d,gender1 = %c\n", age1, gender1);
    printf("age2 = %d,gender2 = %c\n", age2, gender2);

    system("pause");
    return 0;
}

实验六

#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");
    else
        printf("罗马不是一天毁灭的,我们来建设吧\n");

    system("pause");
    return 0;
}

实验七

#include <stdio.h>
#include<stdlib.h>
int main()
{
    int answer;
    char words[5000];

    printf("网课学习让一些人欢喜一些人忧.\n");
    printf("1.作为喜欢自学的人,觉得这样很好,有网络,自主学习,很ok.\n");
    printf("2.不喜,不喜,很不喜,眼睛快瞎了,脑壳有点卡...\n");
    printf("3.中间派,不知道,说不清.\n");
    printf("4.其他...\n");
    printf("你的选择:");
    scanf("%d",&answer);

    if(answer == 4)
    {
        printf("请补充说明你的想法:\n");
        getchar();
        gets(words);
    }
    printf("\n");

    printf("当遇到问题时,你会选择:\n");
    printf("1.遇到问题时,就解决问题。不懂的,搜索式学习,逐个击破.\n");
    printf("2.遇到问题,不高兴。然后,...,没有了.\n");
    printf("3.其他...\n");
    printf("你的选择是:");
    scanf("%d",&answer);

    if (answer == 1)
        printf(":)\n");
    else if(answer == 2)
        printf("这样不能解决问题啊...我们选择1好不好:)\n");
    else if(answer == 3)
    {
        printf("请补充说明你的想法:\n");
        getchar();
        gets(words);

    }

    system("pause");
    return 0;
}

 

标签:main,初体验,return,int,scanf,编程,C语言,printf,include
From: https://www.cnblogs.com/lx161225/p/16796050.html

相关文章