一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

C語(yǔ)言課程訓(xùn)練系統(tǒng)題-重慶郵電大學(xué)

 印度阿三17 2020-12-26

C語(yǔ)言課程訓(xùn)練系統(tǒng)題-基礎(chǔ)習(xí)題

1.愛(ài)因斯坦

#include <stdio.h>
main()
{
int  x,find=1;
x=0;
    do{
        x  ;
       if(x%2==1&&x%3==2&&x%5==4&&x%6==5&&x%7==0)find=0; 
    }while (find);  
    printf("x=%d\n",x);
}

在這里插入圖片描述

2.輸出兩數(shù)最大值

#include<stdio.h>
main()
{
int a,b,max;
printf("Input a, b:");
scanf("%d,%d",&a,&b);
if (a>b) max = a;
if (a<=b) max = b;
printf("max = %d\n",max);
}

在這里插入圖片描述

3.輸出兩數(shù)商

#include <stdio.h>
main()
{
    int a,b;
double c;
printf("Input two integers:");
    scanf("%d%d",&a,&b);
    c = a/b;
    printf("The quotient of a and b is :%.f",c);
}

在這里插入圖片描述

4.12a4.2

#include <stdio.h>
main()
{
    int i;
    char ch;
    float f;
    printf("Please input:\n");
    scanf("%d%c%f",&i,&ch,&f);
    printf("The input integer is : %-3d\nThe input character is : %c\n",i,ch);
    printf("The input float is : %f",f);
}

在這里插入圖片描述

5判斷3個(gè)數(shù)是否相等

#include <stdio.h>
 main()
{
    int a,b,c;
scanf("%d%d%d",&a,&b,&c);
    if (a==b&&a==c)
        printf("The three number is equal!!!");
    else
        printf("The three number isn't equal!!!");
}

在這里插入圖片描述

6輸入一個(gè)數(shù),逆序輸出這個(gè)數(shù)

#include<stdio.h>
main()
{
int x,a,b,c,d,y;
printf("Input x:");
scanf("%d",&x);
if(x<0)
d=(-x);
else
d=x;
a=d/100;
b=(d-a*100)/10;
c=d;
y=a b*10 c*100;
printf("y = %d\n",y);
}

在這里插入圖片描述

7求三角形面積

#include<stdio.h>
#include<math.h>
main()
{
float a,b,c,s,area;
printf("Enter 3 floats");
scanf("%f,%f,%f",&a,&b,&c);
s=(a b c)/2;
area=(float)sqrt(s*(s-a)*(s-b)*(s-c));
printf("area=%.2f\n",area);
}

在這里插入圖片描述

8四則運(yùn)算

#include<stdio.h>
#include<math.h>
main()
{
float a,b;
char op;
printf("Please enter the expression:\n");
scanf("%f %c%f",&a,&op,&b);
switch(op)
{
case' ':printf("%f   %f = %f \n",a,b,a b);break;
case'-':printf("%f - %f = %f \n",a,b,a-b);break;
case'*':printf("%f * %f = %f \n",a,b,a*b);break;
case'^':printf("%f ^ %f = %f \n",a,b,pow(a,b));break;
case'/':if(b==0)
printf("Division by zero!\n");
else
printf("%f / %f = %f \n",a,b,a/b);break;
default:printf("Invalid operator! \n");
}
}

在這里插入圖片描述

9求2/1,3/2,5/3,8/5,13/8,21/13,…前20項(xiàng)之和

#include <stdio.h>
main()
{
    double i, s1 = 2, s2 = 1;
    float x, sum = 0;
for (i = 1; i <= 20; i  )
    {
        sum  =( s1 / s2);
        x = s1;
        s1  = s2;
        s2 = x;
    }
    printf("sum = %f\n", sum);
}

在這里插入圖片描述

10小寫轉(zhuǎn)大寫

#include<stdio.h>
main()
{

char c1,c2;
c1=getchar();
c2=c1-32;
printf("%c,%d\n",c2,c2);
}

在這里插入圖片描述

11大寫轉(zhuǎn)小寫

#include<stdio.h>
main()
{
char c1,c2;printf("Press a key and then press Enter:");
c1=getchar();
c2=c1 32;
printf("%c\n",c2);
}

在這里插入圖片描述

12輸入兩數(shù)求商

#include <stdio.h>
main()
{
    int a,b,c;
printf("Enter two numbers");
scanf("%d%d",&a,&b);
if(b==0)
printf("cannot divide by zero.\n");
else
c=a/b;
printf("%d",c);
}

在這里插入圖片描述

13計(jì)算心跳次數(shù)

#include<stdio.h>
#include<math.h>
main()
{
int n,c;
printf("Please input your age: ");
scanf("%d",&n);
c=n*365*24*60*75;
printf("The heart beats in your life: %d",c);
}

在這里插入圖片描述

14輸出指定文字

#include<stdio.h>
main()
{
printf("*****************************\n");
printf("* C programming            *\n");
printf("* Hello world!          *\n");
printf("*****************************\n");
}

15溫度轉(zhuǎn)換

#include<stdio.h>
#include<math.h>
main()
{
double t,T;
printf("Please input fahr: ");
scanf("%lf",&t);
T=5.0*(t-32.0)/9.0;
printf("The cels is: %.2f",T);
}

#include<stdio.h>
#include<math.h>
main()
{
double t,T;
printf("Please input cels: ");
scanf("%lf",&t);
T=t*9.0/5.0 32.0;
printf("The fahr is: %.2f",T);
}

在這里插入圖片描述

16體重指數(shù)

#include<stdio.h>
#include<math.h>
main()
{
int w,h,weight;
double height,t;
printf("Input weight, height:\n");
scanf("%d,%d",&w,&h);
weight=w*2;
height=h/100.00;
t=w/(height*height);
printf("weight=%d\n",weight);
printf("height=%.2f\n",height);
printf("t=%.2f\n",t);
}

在這里插入圖片描述

17大象喝水

#include<stdio.h>
#include<math.h>
main()
{
int h,r,n;
float PAI=3.14159;
scanf("%d,%d",&h,&r);
n=20000/(h*r*r*PAI);
printf("please input the height and the radius:\n%d",n 1);
}

在這里插入圖片描述

18輸出大寫字母,所占內(nèi)存大小

#include<stdio.h>
main()
{
char c1,c2;
printf("please input a lowercase:\n");
c1=getchar();
c2=c1-32;
printf("%c %d %d\n",c2,c2,sizeof(c2));
}

在這里插入圖片描述

19改錯(cuò)12a4.

#include <stdio.h>
main()
{
    int i;
    char ch;
    float f;
    printf("Please input:\n");
    scanf("%d%c%f",&i,&ch,&f);
    printf("The input integer is : %d \nThe input character is : %c\n", i, ch);
    printf("The input float is : %f", f);
}

在這里插入圖片描述

20輸出N個(gè)階乘

#include<stdio.h>
#include<math.h>
main()
{
int i,n;
long p=1;
printf("Please enter n:");
scanf("%d",&n);
for(i=1;i<=n;i  )
{
p=p*i;
printf("%d! = %ld\n",i,p);
}
}

在這里插入圖片描述
注:其余39道基礎(chǔ)題在我資源文檔中。

來(lái)源:https://www./content-4-799351.html

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多

    亚洲第一香蕉视频在线 | 国产精品日韩欧美第一页| 91亚洲熟女少妇在线观看| 人妻乱近亲奸中文字幕| 91精品国产品国语在线不卡| 国产av熟女一区二区三区四区| 亚洲国产欧美精品久久| 国产对白老熟女正在播放| 亚洲国产一级片在线观看| 微拍一区二区三区福利| 亚洲天堂精品在线视频| 日韩欧美中文字幕av| 日韩蜜桃一区二区三区| 国产乱久久亚洲国产精品| 出差被公高潮久久中文字幕| 精品日韩av一区二区三区| 丰满人妻一二三区av| 四季av一区二区播放| 五月激情综合在线视频| 日韩精品一区二区毛片| 激情综合网俺也狠狠地| 久久99国产精品果冻传媒| 美女被啪的视频在线观看| 亚洲另类欧美综合日韩精品| 在线日韩中文字幕一区 | 国内午夜精品视频在线观看| 婷婷色网视频在线播放| 国产精品视频一级香蕉| 国产av熟女一区二区三区四区| 狠色婷婷久久一区二区三区| 五月婷婷六月丁香在线观看 | 九九热视频免费在线视频| 深夜视频成人在线观看| 午夜国产福利在线播放| 一区二区三区免费公开| 91欧美日韩一区人妻少妇| 亚洲一区二区三区精选| 日韩欧美一区二区不卡看片| 99香蕉精品视频国产版| 亚洲国产天堂av成人在线播放| 日本熟妇熟女久久综合|