C语言编程十大经典例题

描述

 

这些都是基本的 C 程序,可以帮助刚踏入 C 编程世界的新手。快来试试吧:

1、C 语言编程 – Hello World

  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main(){    printf("Hello world
");    printf("Linux迷 www.linuxmi.com");    return 0;}

C程序

 

2. C 语言编程 - 执行算术运算

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main(){int a,b;printf("Enter two numbers:");scanf("%d%d",&a,&b);printf("Sum=%d difference=%d product=%d quotient=%d
",a+b,a-b,a*b,a/b);return 0;}

3.C 编程 - 求圆的面积

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#include#includeint main(){    float r;    float N=3.14;    float s;    //N*r*r;该行必须在输入r值以后    printf("请输入该圆的半径:");    scanf("%f",&r);        s=N*r*r;    printf("%.7f
",s);//输出小数点后7位    return 0;}

C程序

 

4.C编程 - 在3个数字中找到最大值

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main()  {int a, b, c;printf("
Enter value of a, b & c : ");scanf("%d %d %d", &a, &b, &c);if ((a > b) && (a > c))printf("
a is greatest
");if ((b > c) && (b > a))printf("
b is greatest
");if ((c > a) && (c > b))printf("
c is greatest
");return 0;}

C程序

 

5.C编程 - 查找偶数或奇数

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main(){int n;printf("Enter a number:");scanf("%d",&n);if(n%2==0){printf("Number is even
");}else{printf("Number is odd
");}return 0;}

C程序

 

6. C编程 - 显示一个数字的因数

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#include int main(){int n,i;printf("Enter a positive integer: ");scanf("%d",&n);printf("Factors of %d are: ", n);for(i=1;i<=n;++i){if(n%i==0)printf("%d ",i);}  return 0;}

C程序

 

7. C编程 - 检查质数

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#include int main(){int n, i, flag = 0;printf("Enter a positive integer: ");scanf("%d",&n);for(i=2; i<=n/2; ++i){// condition for nonprime numberif(n%i==0){flag=1;break;}}if (flag==0)printf("%d is a prime number.
",n);elseprintf("%d is not a prime number.
",n);return 0;}

C程序

 

8.C编程 - 检查闰年

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main(){int year;printf("Enter a year: ");scanf("%d",&year);if(year%4 == 0){if( year%100 == 0){// year is divisible by 400, hence the year is a leap yearif ( year%400 == 0)printf("%d is a leap year.
", year);elseprintf("%d is not a leap year.
", year);}elseprintf("%d is a leap year.
", year );}elseprintf("%d is not a leap year.
", year);return 0;}

C程序

 

9.C编程 -  从1加到n的和

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#includeint main(){int i,n,sum=0;printf("Upto how many terms you want to find the sum:");scanf("%d",&n);for(i=1;i<=n;i++){sum = sum + i;}printf("Sum is %d
",sum);return 0;}

C程序

 

10. C编程 - 一个数的阶乘

  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
#include int main(){int n, i;unsigned long long factorial = 1;printf("Enter an integer: ");scanf("%d",&n);// show error if the user enters a negative integerif (n < 0)printf("Error! Factorial of a negative number doesn't exist.");else{for(i=1; i<=n; ++i){factorial *= i;              // factorial = factorial*i;}printf("Factorial of %d = %llu
", n, factorial);}return 0;}

C程序

这些 C 编程示例,可以很好的帮助初学者进行编码之旅。

写在最后:另外,对于准备学习C/C++编程的小伙伴,如果你想更好的提升你的编程核心能力(内功)不妨从现在开始!

整理分享(多年学习的源码、项目实战视频、项目笔记,基础入门教程)

欢迎转行和学习编程的伙伴,利用更多的资料学习成长比自己琢磨更快哦!

 

原文标题:C语言实战例题:小白必会的 10 个C语言经典练习题!源码分享

文章出处:【微信公众号:C语言编程学习基地】欢迎添加关注!文章转载请注明出处。

审核编辑:汤梓红
打开APP阅读更多精彩内容
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

全部0条评论

快来发表一下你的评论吧 !

×
20
完善资料,
赚取积分