-
[求助]编译有错误可是怎么改呢?
[求助]编译有错误可是怎么改呢? #include"stdio.h"#include<conio.h>#include"c.h"structstudent{ intsequence;//序号charname[20];intnumber;//学号charsex;intscore[3];}stu[1000]; voidAverone()//Gettheavera...
372
热度 -
[求助]请问这题错在哪里
[求助]请问这题错在哪里 structstudent{intnumber;charname[10];floatscore;}stu[4];main(){inti,x;floatmax,y;char*z;for(i=0;i<4;i++)scanf("%d%s%f",&stu[i].number,&stu[i].name,&stu[i].sco...
141
热度 -
最长的SQL话语
最长的SQL语句今天无意之中,我竟然写出我目前写得最长的一条SQL语句:selectm.stu_NamestuName,(selectsoureNumberfromstudentSourewheresubjectid='1'andstu_id='20081030001'andclassID='18')'期中英语',(selectsoureNumberfromstudentSourewheresub...
28
热度 -
程序有个错误我不知道怎么修改 请高手帮帮忙指点指点
程序有个错误我不知道怎么修改请高手帮帮忙指点指点 /***************Score.h******************/ #ifndef_SCORE_H #define_SCORE_H #include<stdio.h> #include<string.h> #include<stdlib.h> #include&l...
534
热度 -
java类数组的括号匹配出现点有关问题
java类数组的括号匹配出现点问题importjava.util.*;publicclassTest{publicstaticvoidmain(Stringargs[]){ Student[][]stu;stu=newStudent[3][];for(inti=0;i<3;i++){ switch(i){ casei:stu[i]=newStudent[3];break; casei:stu...
57
热度 -
powerbuilder查询数据库支持with语句么解决办法
powerbuilder查询数据库支持with语句么各位好,想请问要支持with语句如何做我的是powerbuilder11,5+DB2V9我是这么做的,DECLAREget_dateCURSORFORwithtemp_dateas ( selectstu.codeascode, max(stu.date)asdate from db2.inst1.stustu wher...
60
热度 -
请教这个异常怎么解决
请问这个错误如何解决publicclassTest{ publicstaticvoidmain(String[]args) { Student[]stu=newStudent[2]; stu[0].name="wanghao"; stu[0].age=20; stu[1]=(Student)stu[0].clone(); stu[1].name="lele&...
233
热度 -
【求助】文件写入有问题,请求帮助
【求助】文件写入有问题,请求帮助 #include<stdio.h>#defineN5 structinfo{intid;charname[20];floatscore[3];floatmax;floatmin;}stu[N]; floathigh(floata[]){floatmax=0.0;inti;for(i=0;i<3;i++)if(a[i]&...
333
热度 -
三个学生五门课,通过函数调用输入,然后在主函数输出,但就是总是输出零. ...
三个学生五门课,通过函数调用输入,然后在主函数输出,但就是总是输出零.望指点 三个学生五门课,通过函数调用输入,然后在主函数输出,(已检查没错,语法也对.但就是不行)但就是总是输出零.望指点. #include<stdio.h> structstudent { intnum; charname[10]; floatscore[5]; }; structstu...
336
热度 -
standby 数据库怎样使用临时表呢?该如何处理
standby数据库怎样使用临时表呢?如题,存储过程等地方用到临时表color='#e78608'>------解决方案--------------------SQLcodecreateglobaltemporarytableStudent(Stu_idNumber(5),Class_idNumber(5),Stu_NameVarchar2(8),Stu_Memovarchar2(200))onC...
157
热度 -
关于链表
关于链表 今天学链表有的迷糊#include<stdio.h>#include<string.h>#include<stdlib.h>structSTUDENT{charname[20];floatage,chinese,math;structSTUDENT*next;};typedefstructSTUDENTSTU;STU*cre...
366
热度 -
请教结构排序问题.真的被搞晕了.哥哥姐姐,救我啊!!!!
我不会写成voidsort(int*)这种,但是写了这个能满足要求,你看看能不能当参考#include<stdio.h>intnum[20];structstudent{charname[20];intnumber;inta;intb;intc;}stu[3];voidsort(intn);voidmain(){intj=0,k=0;chari;do{printf("请输入名字:\n"...
180
热度 -
abatis防止sql攻打
abatis防止sql攻击为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值。下面是三个不同数据库的ibatis的模糊查询传值。#mysql:select*fromstuwherenamelikeconcat('%',#name#,'%')##oracle:select*fromstuwherenamelike'%'||#name#||'%'##SQLServer:select*...
65
热度 -
模糊查询 防止SQL流入
模糊查询防止SQL注入为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值。下面是三个不同数据库的ibatis的模糊查询传值。mysql:select*fromstuwherenamelikeconcat('%',#name#,'%')oracle:select*fromstuwherenamelike'%'||#name#||'%'SQLServer:select*fromstu...
8
热度 -
iabtis模式sql注入
iabtis方式sql注入为了防止SQL注入,iBatis模糊查询时也要避免使用$$来进行传值.下面是三个不同数据库的ibatis的模糊查询传值。mysql:select*fromstuwherenamelikeconcat('%',#name#,'%')oracle:select*fromstuwherenamelike'%'||#name#||'%'SQLServer:select*froms...
75
热度 -
iBATIS入门之二:兑现增删改查、模糊查询、序列增长
iBATIS入门之二:实现增删改查、模糊查询、序列增长 SQL脚本: --建表 DROPTABLEstudent; CREATETABLEstudent ( studentidNUMBER(9), nameVARCHAR2(50)NOTNULL, ageNUMBER(9)NOTNULL, CONSTRAINTstudent_studentid_pkPRIMARYKEY(studentid) )...
80
热度 -
JavaScript惯用"类"构建方式
JavaScript常用"类"构建方式 带有构造函数(原型方式)的"类": functionStudent(name,gender,age){ this.name=name; this.gender=gender; this.age=age; this.hobby=newArray(); } Student.prototype.showHobbies=function(){ ...
399
热度 -
SQL语句插入 smallint 类型的数据解决办法
SQL语句插入smallint类型的数据我试了一下..关于smallint类型的值只要输入1位却插不到表中.让我很纠结..SQLcodeINSERTINTOstudent_Info(stu_ID,stu_Year)VALUES(001,3)stu_ID是char(8)(主键)stu_Year是smallintstu_Year这个值要是3位数就能插入,但2位或者1位,却没有反映,这是怎么回事?col...
95
热度 -
请C语言的高手帮我一个大忙!错误已用括号标明
请C语言的高手帮我一个大忙!错误已用括号标明 #include"stdio.h" #defineN10 structstudent {charnum[10]; charname[20]; floatscore[3]; floatsum; floataver; }stu[N]; voidmain() { voidcount(structstudents...
142
热度 -
sql同时插入多条数据解决方案
sql同时插入多条数据task表,student表,Grade表(task_id,stu_id)现在想向grade表中插入task_id,和同一个班的学生stu_idcolor='#e78608'>------解决方案--------------------------------------------------------表Class班级表表Student学生表表Task作业表表Stu_Ta...
634
热度