[关于用C编写的程序怎么才能生成软件并有漂亮的界面!]VC的主要工作不是做界面的,他的主要工作是做接口、封装动态链接库、静态链接库、控件等。 把核心控件或函数封装好后,使用适合做界面的IDE来调用实现。 当然Vc也能做界面,会很...+阅读
/*说明:题目描述不是很具体,但是按要标符合题目所要的效果*/ #include#include#include#define N 5 //字符串个数 #define SN 10 //字符串长度 int Input_str(const int, char ** const); //返回字符串个数 void Order_ascii(const int, char ** const); //排序 void Show_str(const int, char ** const); //显示 int Insert_str(const char, const int, char ** const); //插入,返回值是否01溢出 int main() { int M=0,n; char *sar[N+1]={NULL}; char c; printf("输入M个字符串:"); scanf("%d",&M); n=Input_str(M,sar); //输入字符串 printf("输入结果:\n"); Show_str(n,sar); //显示结果 Order_ascii(n,sar); //排序 printf("排序结果:\n"); Show_str(n,sar); //显示排序结果 printf("\n输入要插入的字符是:"); scanf("%c",&c); if (Insert_str(c,n,sar)==1) return 0; //插入 Order_ascii(n,sar); //排序 printf("插入后排序结果:\n"); Show_str(n,sar); //显示结果 } int Input_str(const int M, char ** const sar) { int i=0; //临时字符串长度 char stmp[SN]={'\0'}; fflush(stdin); //清除缓冲区 if (M>N) { gets(stmp); sar[1]=(char *)malloc(sizeof(char[1])*SN); //分配一个数组空间 for (i=0; i
请大家帮忙写一段程序
现场打代码
#include
#define N 80
int main()
{
int n,i,max,sum=0;
int a[N];
float f;
printf("enter n:\n");
scanf("%d",&n);
for(i=0;i { scanf("%d",&a[i]); } max=a[0]; for(i=1;i { if(max
max=a[i]; sum=sum+a[i]; } printf("%d\n",max); f=sum*1.0/n; printf("%f",f); } 由于没有调试 可能会有语法错误逻辑错误 但这很简单的 自己调试吧 int inte_Num; int a,b,c,d,e;//各个数 a=inte_Num/10000;b=inte_Num/1000;c=inte_Num/100;d=inte_Num/10;e=inte_Num; if(a!=0){ printf("5位数!"); printf("%d%d%d%d%d",e,d,c,b,a); } else { if(b!=0){ printf("4位数!"); printf("%d%d%d%d",d,c,b,a); } else { if(c!=0){ printf("3位数!"); printf("%d%d%d",c,b,a); } else { if(d!=0){ printf("2位数!"); printf("%d%d",b,a); } else { printf("1位数!"); printf("%d",a); } } } } printf("%d\n",a); printf("%d\n",b); printf("%d\n",c); printf("%d\n",d); printf("%d\n",e); printf("%d%d%d%d%d",e,d,c,b,a); 只用了if语句 如果觉得烦的话,可以自己写个函数来处理!希望对你有所帮助 呵呵 以下为关联文档: C语言编写一个程序要求输入一个年份程序判断其是否为闰年1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include<stdio.h> voidmain() { inti,year,n; do { scanf("%d",&year); if(((year%4==0)&(year%100!=0)) || year%400=... 用C语言编写一个随机点名程序例: #include/*standardinput&output*/ #include/*standardlibary*/ #include/*string*/ #include/*ConsoleInput/Output*/ #include structstudentinfo/*学生信息的结构体*/... 怎样编写c程序安装时要打个CD 全是1就可以了 然后全点下一步 中文的应该你能看懂 现在教你怎么用 1 .文件-建立新工程 2.点击win32 console application,工程起个名字 3出现对话框,点击完毕... C语言随机数序列编程:用C语言程序编写。生成随机数序列//希望您你有帮助! #include <stdio.h> #include <time.h> int main() { int a[15] = {0}; int count = 0; srand(time(NULL)); while ( 1 ) { int r = rand()%15 + 1; if (+... VC用C语言编写WIN32程序怎么实现动态创建VC编写dll文件 1、VC++->New->Project->Win32 Dynamic_Link Library; 2、选择创建一个空工程; 首先DLL需要一个头文件,所以新建一个C\C++ Header File 这个头文件中必须包含想... 编写一段ARM汇编程序段实现1 2 3 N NAREA EXAMPLE,CODE READONLY SUM DCD 0 ENTRY CODE32 //32位ARM模式代码 LOOPS LDR R0,=0xffffffff //循环次数,假设N=0xFFFFFFFF MOV R1,#0 //R1清零 LOPPA ADD R1,R1,R0 //... 到底怎么在Linux里编写c程序啊在linux下通常使用gedit或vim直接编写.c程序,然后通过gcc指令编译。以Ubuntu系统为例,详细过程如下: 1、进入桌面Temp文件夹 2、右键新建空白文件 3、将文件命名为hello.c 4... 在Linux系统中编写 C程序:#include <unistd.h> #include <stdio.h> void child_process() { while (true) { printf("I am child process\n"); } } int main() { pid_t pid = fork(); if (pid < 0) { p... 编写Linux C程序先给你列出stu2主目录的文件信息这个功能的功能代码: #include <unistd.h> #include <dirent.h> #include <stdlib.h> #include <stdio.h> void read_dir()///==ls { char bu...用C写一段程序