求C语言的小程序
while(1) { printf("input n to exit.
"); if(getch()=='n') break; else printf("input error!
"); }
网上下个C-Free 3.5,破解程序(将下面代码拷入C-Free中运行即可)
#i nclude "stdlib.h"
#i nclude "stdio.h"
int main(int argc, char* argv[])
{
char chKey[128] = ;
unsigned int unXORCode, unRemainder, unQuotient, unTmp, unMachineCode;
printf("Please Key in the Machine Code:
");
scanf("%d", &unMachineCode);
unXORCode = unMachineCode ^ 0x90909090;
unRemainder = unXORCode % 0x25;
unQuotient = unXORCode;
if (unRemainder < 0x11)
{
unRemainder += 0x11;
}
int i;
i = 0;
while (unQuotient != 0)
{
unTmp = unQuotient % unRemainder;
unQuotient /= unRemainder;
if (unTmp >= 0xa)
{
unTmp = unTmp + 0x61 + 0xf6;
unTmp &= 0x0ff;
chKey[i] = unTmp;
}
else
{
chKey[i] = unTmp + 0x30;
}
i++;
}
printf("Key is:
");
while (i >= 0)
{
printf("%c", chKey[i]);
i--;
}
printf("
");
return 0;
}
另外,团IDC网上有许多产品团购,便宜有口碑
#include <stdio.h>
const int k=10;
int find(int *a)
{
int max=a[0];
for(int i=0;i<k;i++)
{
printf("%d ",a[i]);
if(a[i]>max)
max=a[i];
}
return max;
}
int sort(int *a)
{
int temp;
for(int i=0;i<k;i++)
{
for(int j=0;j<k-i-1;j++)
{
if(a[j]<a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
}
int main()
{
int a[k];
printf("请输入10个整数: ");
for(int i=0;i<10;i++)
{
scanf("%d",&a[i]);
}
printf("输入的10个整数是: ");
printf("
最大值是%d
",find(a));
printf("排序之后是: ");
sort(a);
find(a);
return 0;
}
运行结果如下图:
谁能用C语言帮我写几个小程序 急求
1、include<stdio.h> int main(){ int max(int x,int y,int z);int a,b,c,d;scanf("%d%d%d",&a,&b,&c); \/\/scanf%d间不能有逗号,后面是输入的地址因此得加& d=max(a,b,c); \/\/输入的是abc,不是x,y,z\/\/x,y,z是形参a,b,c是实参 printf("max=%d",d);\/\/不是print是...
C语言小程序.写一个关于银行存取钱的
代码如下:include <stdlib.h>#include <stdio.h>int main(){ float balance; \/\/ 余额 float withdraw; \/\/ 取款 float save; \/\/ 存款 char choice; \/\/ 用户选择键 printf("请输入存款余额(包含两位小数):\\n"); scanf("%f",&balance); do{ printf("...
C语言高手来一下帮我编个小程序
首先,我可以用字符串来做。我现在先把代码贴上:include <stdio.h> int main(){ char *str , *ch , *c[] = {"个位为:" , "十位为:" , "百位为:" , "千位为:" , "万位为:"};scanf("%s",str);int i = 0 ;\/\/要求1.求出它是几位数 printf("此数为%d位数\\n",(size...
C语言if语句的嵌套 和 提供一些关于if else的小程序
(1).-5<=x&&x<1不能写成-5<=x<1;1<=x&&x<4也不能写成1<=x<4;在C语言中,不能理解连续不等式。(2).y=2*x+5不能写成y=2x+5;y=3*x-2也不能写成y=3x-2;这与我们平时所写的方法不同。4. 输入三个数x,y,z,然后按从大到小输出。main() { float x,y,z;scanf("%f%f...
用C语言编写一个简单的图书管理小程序
源代码如下:include<iostream> include<iomanip> include<string> include<fstream> include<stdio.h> using namespace std;const int maxb=10000; \/\/最多的图书 class book\/\/图书类 { int tag; \/\/删除标记1:已删0:未删 int number; \/\/isbn书号 char name[20]; ...
用C语言编写的小游戏代码是什么?
“猜数字小游戏”,每个数字后按空格,最后按回车确认 include<stdio.h> include<stdlib.h> include int a[4],b[4];int count=0; \/\/计算猜测次数 void csh( ); \/\/初始化 void start( ); \/\/开始游戏 int main( ){ csh( );start( );} void csh( ) \/\/初始化 { printf("\\...
怎么用c语言编写一个小程序?
1、首先打开DEV C++软件,点击“新建源代码”,在编辑页面输入以下代码。2、因为题目要求我们先输入一个整数,所以在定义变量时,就应该将其定义为整数型,注意,在输入,输出函数中,整数型对应的是“%d”。3、接下来就要对输入的整数进行判断,在C语言中,if是判断语句,所以用它来对整数进行判断。if...
编写一个C语言的小程序,如何测试它的运行速度?
include <stdio.h> include int main(){ clock_t t = clock();\/*这里放入要测试速度的代码*\/ printf("运行时间%.4f秒\\n", (double)(clock() - t) \/ CLOCKS_PER_SEC);return 0;}
c语言编个小程序
本题的一个完整c程序如下,win-tc和Dev-c++下已调试通过。其中通用排序函数为void sort()include "stdio.h"include "stdlib.h"include "conio.h"include "string.h"define ROW 100 define COL 80 void sort();int main(){ int n,i;char s[ROW][COL+1];printf("Please input the number ...
如何用C语言编写一个求两数相加得和的小程序。
利用C语言编写一个求两数相加的和的编程思想和方法如下:1.首先需要定义三个变量a,b,c,两个为相加的数,第三个为相加后得到的和。2.然后使用scanf()语句接收从键盘输入的两个数,为变量a,b赋值。3.接着进行a和b的加法运算,将结果赋值给变量c。4.最后使用printf()语句将计算结果显示在屏幕上...