| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 865 人关注过本帖
标题:谁给看下这些招聘的题目 (限C语言[C++亦不可]在线求答案 万分火急)
只看楼主 加入收藏
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
 问题点数:0 回复次数:9 
谁给看下这些招聘的题目 (限C语言[C++亦不可]在线求答案 万分火急)

1. 这是函数的reference的一部分。 怎样的函数? 能说明吗?
createImage
public static Image createImage(int width, int height)
Creates a new, mutable image for off-screen drawing. Every pixel within the newly created image is white.
The width and height of the image must both be greater than zero.
Parameters:
width - the width of the new image, in pixels
height - the height of the new image, in pixels
Returns:
the created image

说明:


2. 这是函数的reference的一部分。 怎样的函数? 能说明吗?

Graphics::DrawLine Method
The DrawLine method draws a line that connects two points.
Syntax
Status DrawLine(
const Pen *pen,
const Point &pt1,
const Point &pt2
);
Parameters
pen
[in] Pointer to a pen that is used to draw the line.
pt1
[in] Reference to a Point object that specifies the start of the line.
pt2
[in] Reference to a Point object that specifies the end of the line.

说明


3. 求二个圆周的长度的差。 二个圆是同样的中心点

计算式
解答.


4. 所有边都为1cm的正三角锥的体积。
计算式
解答.

5. 请制作函数。 Please make your programming code.
从1在到100的数值中,请记述质数的程序。

Program Code :

说明


6. 请制作函数。 Please make your programming code.
数值型的参数n >>> 变换 >>> 十六进制数字符串

Program Code :

说明

[此贴子已经被作者于2007-7-25 17:40:51编辑过]

搜索更多相关主题的帖子: C语言 招聘 火急 
2007-07-25 17:35
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
得分:0 
虽然说都挺简单的.不过俺是菜鸟.对结构化的程序写的太少太少.不知道写成什么样的才符合要求.~

2007-07-25 17:38
anlogo
Rank: 2
等 级:论坛游民
威 望:1
帖 子:293
专家分:20
注 册:2007-7-20
收藏
得分:0 
看到头都晕了~一次问那么多,你太贪心了
2007-07-25 17:42
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
得分:0 
对不起...我...我不是故意的...
某个公司的招聘题目...还有几个没放上来....

2007-07-25 17:45
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
得分:0 

等待高手答案中


2007-07-25 18:19
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
得分:0 
一个半多小时了.着急....

2007-07-25 19:14
edison1118
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-23
收藏
得分:0 
No.5
#include<stdio.h>
#include<math.h>
main()
{
int i,j,flat=1;

printf("100以内的素数有:\n");
printf("2\t");
for(i=3;i<=100;i+=2){
for(j=2;j<=sqrt(i);j++)
if(i%j==0)
flat=0;
if(flat==1)
printf("%d\t",i);
flat=1;
}

return 0;
}

肖邦再NB,也弹不出我的悲伤~~~
2007-07-25 22:04
brbr1234567
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2007-7-25
收藏
得分:0 
哭死了。...

2007-08-08 02:51
yuren_1020
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-8-8
收藏
得分:0 
1、
说明:
建立一个图像
函数原型:public static Image createImage(int width, int height)
建立一个屏保图,图内每个像素点都是白色,图的高宽都不为0
参数说明:
宽度-图的宽度,像素为单位
高度-图的高度,像素为单位
返回:
建立的图像

2、
图类::画线的方法
画出两点一线的方法
语法
参数
pen 画线使用的笔
pt1 线的起点
pt2 线的终点
2007-08-08 20:35
lijy520
Rank: 2
等 级:论坛游民
帖 子:119
专家分:42
注 册:2007-8-8
收藏
得分:0 

过了没???


2007-08-08 20:49
快速回复:谁给看下这些招聘的题目 (限C语言[C++亦不可]在线求答案 万分火急)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.038126 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved