c语言,来个大佬救命?
c语言作业,五道题目,程序大佬们救救孩子吧,源代码谢谢
伪代码都有了,动动脑袋,就是简单的数学逻辑
急求!各位C语言高手大哥救命!
<script language="javascript"> for ( i = 1; i <= 10; i++ ) {alert("hello, world");alert("somethings to tell you."); } </script>这样保存成html就最简单了~
c语言高手救命
第一题应该是选B,main中先赋值s[0]={"YangSan",20041,703} s[1]={"LiSiGuo",20042,580}.之后调用f(s)这个函数,,这时s[0]={"SunDan",20044,550},s[1]={".
编写一个C语言程序,救命啊!
创建一个结构 struct student { char name[20]; int age; }stu[10]; int i=0,j=0,count=0; //然后录入学员信息(这里就不写了,很简单的) void sort(struct student stu[]) //按成绩排序 { struct student s; for(i=0;i
c语言啊救命救命
程序已修改,用这个 没有做学生号唯一性验证,输入避免重复的学号.#include<stdio.h>#include<malloc.h>#include<string.h>#define stuNum 30//学生人数上限30人 可修.
c语言求大佬抬一手
#include <stdio.h> int main(void) { int a,b,i; scanf("%d%d",&a,&b); for(i=a>b?a:b;;++i) { if(i%a==0&&i%b==0) { printf("%d\n",i); break; } } return 0; }
在线急等,c语言,求大佬给个代码
#include<stdio.h>int fun(char *s) { int a; a=0; while ( *s ) { a*=10; a+=(*s)-'0'; s++; } return a; }void main() { char str[80]; int a; scanf("%s",str); a=fun(str); printf("%d\n",a); }
c语言大佬求助!!!急在线等
#includeint main(){ double a,b; char c; scanf("%lf%c%lf",&a,&c,&b);/* switch(c) { case'+': printf("=%.2lf.\n",a+b); break; case'-': printf("=%lf.\n",a-b); break; case'*': printf.
C语言~~~救命啊!
计划在第7章1,输入10个雇员的姓名和号码1,输入10个雇员的姓名和号码2,排序从小到大的顺序号,还调整与2号,排序从小到大的顺序号名称排序,并调的名称,以便随着数字3,输入员工的个数,用bisearch方法可以找到这些雇员的姓名,输出了这名雇员的信息. 3,输入员工的个数,用bisearch方法可以找到这些雇员的姓名,输出了这名雇员的信息.4,如果雇员的信息不存在,插入这名雇员的信息列表(数组)4,如果员工的信息不存在,插入这名雇员的信息列表(数组)
C语言求大佬写代码
#include <stdio.h> int main(){ char ch; scanf("%c",&ch); if("ch>='A'&&ch<='Z'") printf("%c",&ch+32);;if("ch>='a'&&ch<='z'") printf("%c %d",ch-32,ch-32); else printf("%d",ch); }