
103
F9122
(
JAVA
SQL
.NET
)
!
! !
!
"#$
"#$"#$
"#$
" % & '
" % & ' " % & '
" % & '
()*+
()*+()*+
()*+
________________
!"#$%&'
()*+,"-./01
2345678!9:;<=>?;@;A/B3
25
/0
=>?;CDEFGHIJKLIMNO
&PQR4STUVW
XYZ[-]/
0
!
!!
!"#$%&'()*+#,
"#$%&'()*+#,"#$%&'()*+#,
"#$%&'()*+#,0
-./0123456789:;<
-./0123456789:;<-./0123456789:;<
-./0123456789:;<
(
" ^ _ ` a b c d e f c d g h i j f k g h
)
l "
mnopqrst(Muvwx"yz<{L.|}~M7JD
DY Z ]
10
/rZ{L.|}'()Zuv0
=>?
=>?=>?
=>?@
@@
@A>?BCDEFG:;
A>?BCDEFG:;A>?BCDEFG:;
A>?BCDEFG:;H
HH
H1
,-
,-,-
, -
ASP.net
15
protected void Page_Load(object sender, EventArgs e)
{ string delimStr = " ,.:";
char[] delimiter = delimStr.ToCharArray();
string words = "Mango Apple.Banana,Pear:";
string[] SplitString = null;
for (int x = 1; x <= 5; x++)
{
SplitString = words.Split(delimiter, x);
Response.Write("
Count = " + x + " ..............
");
foreach (string ss in SplitString)
Response.Write("-" + ss + "-
");
}
}
Java
! " #$ % & ' (
10
)#*+,-.
!"/
19
0 1 2 3 4 56789:;<=
> ! " #$ +,)
10
)? @
19
*********
*********
01. import java.util.*;
02. public class Exam1030731_2 {
03. public static void main(String[] args) {
04.
05. System.out.print("
)? @
");
06. Scanner s = new Scanner(System.in);
07. int num=s.nextInt();
08. int n=1;
09. while (n <=num) {
10. if (n%10 != 0)
11. System.out.print("*");
12. else
13. System.out.println();
14. n=n+1;
15. }
16. }
17. }