奶头挺立呻吟高潮av全片,成人试看120秒体验区,性欧美极品v,A片高潮抽搐揉捏奶头视频

C語言

C語言基礎(chǔ)知識

時間:2025-03-28 22:50:50 C語言 我要投稿

C語言基礎(chǔ)知識集錦

  懂編程語言,有寫一些項目的經(jīng)驗,能夠看懂一些比較復(fù)雜項目的代碼對我們是十分有幫助的,下面小編為大家整理了一些C語言基礎(chǔ)知識,一起來看看吧: 

C語言基礎(chǔ)知識集錦

  1、C語言檢查是元音還是輔音

  #include

  int main(){

  char c;

  printf("Enter an alphabet: ");

  scanf("%c",&c);

  if(c=='a'||c=='A'||c=='e'||c=='E'||c=='i'||c=='I'||c=='o'||c=='O'||c=='u'||c=='U')

  printf("%c is a vowel.",c);

  else

  printf("%c is a consonant.",c);

  return 0;

  }

  輸出1:

  Enter an alphabet: i

  i is a vowel.

  輸出2:

  Enter an alphabet: G

  G is a consonant.

  也可以用條件運算符解決

  /* C program to check whether a character is vowel or consonant using conditional operator */

  #include

  int main(){

  char c;

  printf("Enter an alphabet: ");

  scanf("%c",&c);

  (c=='a'||c=='A'||c=='e'||c=='E'||c=='i'||c=='I'||c=='o'||c=='O'||c=='u'||c=='U') ? printf("%c is a vowel.",c) : printf("%c is a consonant.",c);

  return 0;

  }

  輸出結(jié)果和上面的程序相同。

  2、C語言實現(xiàn)從三個數(shù)值中查找最大值

  實現(xiàn)1:

  /* C program to find largest number using if statement only */

  #include

  int main(){

  float a, b, c;

  printf("Enter three numbers: ");

  scanf("%f %f %f", &a, &b, &c);

  if(a>=b && a>=c)

  printf("Largest number = %.2f", a);

  if(b>=a && b>=c)

  printf("Largest number = %.2f", b);

  if(c>=a && c>=b)

  printf("Largest number = %.2f", c);

  return 0;

  }

  實現(xiàn)2:

  /* C program to find largest number using if...else statement */

  #include

  int main(){

  float a, b, c;

  printf("Enter three numbers: ");

  scanf("%f %f %f", &a, &b, &c);

  if (a>=b)

  {

  if(a>=c)

  printf("Largest number = %.2f",a);

  else

  printf("Largest number = %.2f",c);

  }

  else

  {

  if(b>=c)

  printf("Largest number = %.2f",b);

  else

  printf("Largest number = %.2f",c);

  }

  return 0;

  }

  實現(xiàn)3:

  /* C Program to find largest number using nested if...else statement */

  #include

  int main(){

  float a, b, c;

  printf("Enter three numbers: ");

  scanf("%f %f %f", &a, &b, &c);

  if(a>=b && a>=c)

  printf("Largest number = %.2f", a);

  else if(b>=a && b>=c)

  printf("Largest number = %.2f", b);

  else

  printf("Largest number = %.2f", c);

  return 0;

  }

  輸出結(jié)果相同:

  Enter three numbers: 12.2

  13.452

  10.193

  Largest number = 13.45

  3、C語言解一元二次方程

  /* Program to find roots of a quadratic equation when coefficients are entered by user. */

  /* Library function sqrt() computes the square root. */

  #include

  #include /* This is needed to use sqrt() function.*/

  int main()

  {

  float a, b, c, determinant, r1,r2, real, imag;

  printf("Enter coefficients a, b and c: ");

  scanf("%f%f%f",&a,&b,&c);

  determinant=b*b-4*a*c;

  if (determinant>0)

  {

  r1= (-b+sqrt(determinant))/(2*a);

  r2= (-b-sqrt(determinant))/(2*a);

  printf("Roots are: %.2f and %.2f",r1 , r2);

  }

  else if (determinant==0)

  {

  r1 = r2 = -b/(2*a);

  printf("Roots are: %.2f and %.2f", r1, r2);

  }

  else

  {

  real= -b/(2*a);

  imag = sqrt(-determinant)/(2*a);

  printf("Roots are: %.2f+%.2fi and %.2f-%.2fi", real, imag, real, imag);

  }

  return 0;

  輸出1:

  Enter coefficients a, b and c: 2.3

  4

  5.6

  Roots are: -0.87+1.30i and -0.87-1.30i

  輸出2:

  Enter coefficients a, b and c: 4

  1

  0

  Roots are: 0.00 and -0.25

  4、C語言檢查是否是閏年

  /* C program to check whether a year is leap year or not using if else statement.*/

  #include

  int main(){

  int year;

  printf("Enter a year: ");

  scanf("%d",&year);

  if(year%4 == 0)

  {

  if( year%100 == 0) /* Checking for a century year */

  {

  if ( year%400 == 0)

  printf("%d is a leap year.", year);

  else

  printf("%d is not a leap year.", year);

  }

  else

  printf("%d is a leap year.", year );

  }

  else

  printf("%d is not a leap year.", year);

  return 0;

  }

  輸出1:

  Enter year: 2000

  2000 is a leap year.

  輸出2:

  Enter year: 1900

  1900 is not a leap year.

  輸出3:

  Enter year: 2012

  2012 is a leap year.


【C語言基礎(chǔ)知識】相關(guān)文章:

C語言基礎(chǔ)知識02-19

C語言的基礎(chǔ)知識08-16

c語言入門基礎(chǔ)知識07-18

C語言程序基礎(chǔ)知識05-19

C語言基礎(chǔ)知識總結(jié)04-15

C語言基礎(chǔ)知識大全02-02

c語言公共基礎(chǔ)知識06-21

C語言基礎(chǔ)知識匯總07-15

C語言位運算的基礎(chǔ)知識05-27

主站蜘蛛池模板: 永清县| 辰溪县| 白水县| 鹤壁市| 马尔康县| 平果县| 海兴县| 恩施市| 金秀| 汉阴县| 英超| 栾川县| 天水市| 绥德县| 龙海市| 连平县| 武安市| 万载县| 桂东县| 通辽市| 文成县| 扶沟县| 九台市| 麻城市| 来安县| 宁晋县| 时尚| 六盘水市| 乃东县| 宁河县| 共和县| 宝鸡市| 新兴县| 贵德县| 佛冈县| 彰化县| 齐齐哈尔市| 长汀县| 庆阳市| 黎城县| 兴文县|