Ô´´úÂëÈçÏÂ:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Parsing XML Responses with the W3C DOM</title>
......
ÒòΪ²»ÖªµÀÈçºÎ¼ÓÈ븽¼þÎÒ¾ÍÊÖдEXCELÊý¾ÝÁË¡£
C# code:
A B C D E F G £¨´ËÀ¸Î»EXCELÖÐROWÐУ¬µÚÒ»ÐÐÊý×ÖÒàÈ»£©
1 ʵÀý±êÌâ
2 by name
3 ¿ÆÄ¿ ±¸註 ³É¼¨
4 Ó¢Óï 89
5 Êýѧ 80
6 ¼ÆËã»ú ¶þ¼¶ 89
7 Èý¼¶ 70
8
ʵÀý±êÌ⣺CDEºÏ ......
xmlÎļþÊÇÕâÑù£º
<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet type="text/xsl" href="1.xsl"?>
<document>
<resume>
<name>ÕÅÈý</name>
<sex>ÄÐ</sex>
<age>38</age>
<skill>WEB±à³Ì&l ......
ÇëÎÊÈçºÎÓÃXStream½âÎö´øÓÐÃüÃû¿Õ¼äµÄXML
ÎÒÓÃwebservice ÔÚ·þÎñ¶Ë»ñÈ¡¿Í»§¶Ë´«À´µÄXML×Ö·û´®£¬ÎÒÐèÒª½âÎö³öËûµÄ¸ù½ÚµãºÍ×Ó½Úµã
ÒÔǰ²»´øÃüÃû¿Õ¼äµÄXML ½âÎöûÎÊÌ⣡£¡
¼±£¡£¡£¡ÔÚÏßµÈ
.......
......
#include <stdio.h>
void main(){
double h;
double r;
printf("Plese input h:\n");
scanf("%f", &h);
printf("\nPlese input r:\n");
scanf("%f", &r);
double m;
m = 2 * 3.14 * r * h;
printf("\nmain ji shi:\t%f", m);
}
Î ......
¼¸¸öC/C++ÃæÊÔÌâ
£±£© What is the size of the following structs
struct foo{
int a;
char[3] b;
};
2£© What is the size of class foo{
public:
int a;
char[3] b;
v ......