㈠ 举几个c语言的简单实用的例子

弄个3.1版的C语言,比较方便。

㈡ 帮忙给个C语言简单while的例子

示例代码如下版:权

#include<stdio.h>
intmain()
{
inti=1;
while(i<=100){
printf("%d ",i);
i++;
}
return0;
}

㈢ C语言的经典编程例子

//最经典的当然是HelloWorld了。
#include"stdio.h"
intmain(void)
{
printf("HelloWorld! ");
}

㈣ 关于C语言编程的一个小例子

#include
"stdio.h"
int
min(int
x,int
y)
{
int
z;
if
(x>y)
//把分号去掉
{
z=y;
}
else
{
z=x;
}
return(z);
}
void
main()
//如果用vc或者用C++编译器编译,记得把void改成专int
{
int
n1,n2;
printf("input
the
frist
number");
scanf("%d",&n1);
printf("input
the
second
number");
scanf("%d",&n2);
printf("\nmin=%d",min(n1,n2));
//你的代码中吧属n1写成了ni
}

㈤ c语言的经典案例

我正好知道一个使用递归算法的经典例子
汉诺塔算法, 一个柱子1上n个盘子套着,大的在下,借用柱子2,全部转移到柱子3上
#include <stdio.h>
int main()
{
void hanoi(int n,char one,char two,char three); // 对hanoi函数的声明
int m;
printf("input the number of diskes:");
scanf("%d",&m);
printf("The step to move %d diskes:\n",m);
hanoi(m,'A','B','C');
}

void hanoi(int n,char one,char two,char three) // 定义hanoi函数
// 将n个盘从one座借助two座,移到three座
{
void move(char x,char y); // 对move函数的声明
if(n==1)
move(one,three);
else
{
hanoi(n-1,one,three,two);
move(one,three);
hanoi(n-1,two,one,three);
}
}

void move(char x,char y) // 定义move函数
{
printf("%c-->%c\n",x,y);
}
在hanoi调用hanoi就是递归了

㈥ 经典C语言程序例子

题目01:在一个已知的字符串中查找最长单词,假定字符串中只含字母和空格版,空格用来分隔权不同的单词。

(6)c语言小例子扩展阅读:

C语言是一门通用计算机编程语言,应用广泛。C语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。

尽管C语言提供了许多低级处理的功能,但仍然保持着良好跨平台的特性,以一个标准规格写出的C语言程序可在许多电脑平台上进行编译,甚至包含一些嵌入式处理器(单片机或称MCU)以及超级电脑等作业平台。

㈦ 给个C语言的for简单例子

#include<stdio.h>
voidmain()
{
inti;
for(i=1;i<=100;i++)
printf("i=%d ",i);
}

㈧ 求生活中的C语言实例(50--200行)

给你个小型工资管理系统吧 /*2、小型工资管理系统 编写一个小型工资管理系统。假设公司有四类人员: 总经理:固定月薪10000元; 销售经历:固定月薪5000元,另按其负责部门当月销售额的4%提成; 销售员:按其负责部门当月销售额的6%提成; 兼职技术员:每小时80元。*/ #include<iostream> using namespace std; float *process(float xse,float t) { float zjl=10000; float xsjl=5000; float xsy=0; float jzy=0; static float a[5]; xsjl=5000+0.04*xse; xsy=0.06*xse; jzy=80*t; a[0]=xsjl; a[1]=xsy; a[2]=jzy; return a; } void show(float a[]) { cout<<"总经理本月薪10000"<<endl; cout<<"——————————————————————"<<endl; cout<<"销售经理本月薪"<<a[0]<<endl; cout<<"——————————————————————"<<endl; cout<<"销售员本月薪"<<a[1]<<endl; cout<<"——————————————————————"<<endl; cout<<"兼职技术员本月薪"<<a[2]<<endl; cout<<"——————————————————————"<<endl; } float main() { float x,hour; float *p; char ch; do{cout<<"工资管理"<<endl; cout<<"——————————————————————"<<endl; cout<<"总经理固定月薪10000"<<endl; cout<<"——————————————————————"<<endl; cout<<"销售经理固定月薪5000元,另按其负责部门当月销售额的4%提成"<<endl; cout<<"——————————————————————"<<endl; cout<<"销售员:按其负责部门当月销售额的6%提成"<<endl; cout<<"——————————————————————"<<endl; cout<<"兼职技术员:每小时80元"<<endl; cout<<"——————————————————————"<<endl; cout<<"1、输入本月销售额和兼职员工作小时"<<endl; cout<<"2、退出"<<endl; cin>>ch; switch(ch){ case '1': cout<<"输入本月销售额和兼职员工作小时"<<endl; cin>>x>>hour; p=process(x,hour); show(p);break; case '2':exit(0);break; } }while(1); return 0; }