按类别查询搜索结果
关于关键词 的检测结果,共 858
dyli2000 | 2014-12-15 08:58:38 | 阅读(2050) | 评论(0)
Java源码转C#源码的五款最佳工具出于某些需要,你可能会遇到把Java源码转换成C#源码的任务。如果是自己一边理解源码,再一边手工翻译,那效率肯定是很低的。有鉴于此,本文推荐了五款最佳的源码转换工具,以解决你的烦恼。工具1#:Java语言转换器助手地址:http://www.microsoft.com/en-us/download/details.as...【阅读全文】
yztx111 | 2014-12-11 11:28:07 | 阅读(110) | 评论(0)
省级网站群建设关注点【阅读全文】
杨艳杰 | 2014-12-10 08:03:14 | 阅读(1910) | 评论(0)
点击(此处)折叠或打开using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace @class{    class Program &nbs...【阅读全文】
杨艳杰 | 2014-12-09 21:49:34 | 阅读(2040) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;...【阅读全文】
【C#/.net】 测小球速度
高一生一世姜 | 2014-12-09 16:25:50 | 阅读(1390) | 评论(0)
/*****************************************************************************************************************************************************关于小球落地的问题,每次弹回的高度是原来的一半定义3个变量sum,h,numsum是经过的路程,num是第几次落地,h是第num次落地前的高度,也是第num-1次落地后...【阅读全文】
高一生一世姜 | 2014-12-09 15:49:36 | 阅读(1300) | 评论(0)
#include  main()  {  char zifu; int b,c,d,e; b=0; c=0; d=0; e=0; while(1) {  scanf("%c",&zifu);  if(zifu>=48&&zifu=65&&zifu【阅读全文】
高一生一世姜 | 2014-12-09 15:17:21 | 阅读(1580) | 评论(0)
#include<stdio.h>  main()  {  int acount=0,bcount=0,ccount=0,dcount=0;  char a;   printf("请输入一行字符:\n");   a = getchar();   while (a !='\n')   {   switch (a)   { ...【阅读全文】
高一生一世姜 | 2014-12-08 17:07:07 | 阅读(1430) | 评论(0)
#include <math.h>int main(){     int i,j,m,n;     printf("10000以内的质数为: \n");     for (m=1;m<=10000;m++)     {          n=sqrt(m); ...【阅读全文】
青竹玉简 | 2014-12-08 15:58:15 | 阅读(18190) | 评论(0)
“公共语言运行库支持”设置为:无公共语言运行库支持。【阅读全文】
青竹玉简 | 2014-12-08 15:19:35 | 阅读(2700) | 评论(0)
解决方式:一.1) 在解决方案资源管理器中,右击相应的.cpp文件,点击“属性”2) 在左侧配置属性中,点开“C/C++”,单击“预编译头”3) 更改右侧第一行的“创建/使用预编译头”,把选项从“使用预编译头(/Yu)”改成“不使用预编译头”4) 注:每一个报错的.cpp都要如此更改哦~辛苦一下呗~二....【阅读全文】
青竹玉简 | 2014-12-08 14:12:36 | 阅读(22740) | 评论(0)
D:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE具体步骤:开始->运行->输入cmd 按运行出来黑色DOS框。(以下步骤因人而异,要看你的C++装在哪个盘了。我是D盘所以按照D盘的说)输入d:按回车(如果你的是C盘 那就c: 按回车 以下差异不一一说明)自动跳入d盘输入cd Program Files\Microsoft Visual Stud...【阅读全文】
我爱樱兰 | 2014-12-03 13:21:26 | 阅读(640) | 评论(0)
  对文件的读和写是最常用的文件操作。在C语言中提供了多种文件读写的函数:  字符读写函数  :fgetc和fputc  字符串读写函数:fgets和fputs  数据块读写函数:freed和fwrite  格式化读写函数:fscanf和fprinf  下面分别予以介绍。使用以上函数都要求包含头文件stdio.h。  字符读写函...【阅读全文】
杨艳杰 | 2014-11-29 23:37:04 | 阅读(2990) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Threading;using System.Text;...【阅读全文】
644924073 | 2014-11-28 22:57:03 | 阅读(660) | 评论(0)
方法一:WINDOWS API画法 //获取要绘制的窗口句柄 Image img = GetWindow(this.tabPage12.Handle); //在母容器上创建图形对象 Graphics gOut = mOut.pnlOut.CreateGraphics(); //在指定位置按指定大小绘出image gOut.DrawImage((Image)img, form1.pnlImage.DisplayRectangle, this.tabPage12.DisplayRectangle, Gra...【阅读全文】
杨艳杰 | 2014-11-28 20:37:07 | 阅读(1260) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace multiple{    public partial class Form1 : Form    {        p...【阅读全文】
杨艳杰 | 2014-11-28 20:30:05 | 阅读(600) | 评论(0)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading;using S...【阅读全文】
【C#/.net】 用C#画滑动
杨艳杰 | 2014-11-28 16:52:53 | 阅读(670) | 评论(0)
点击(此处)折叠或打开using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using Syst...【阅读全文】
喜欢你的微 | 2014-11-26 11:48:17 | 阅读(470) | 评论(0)
  指针变量可以指向一个结构数组,这时结构指针变量的值是整个结构数组的首地址。结构指针变量也可指向结构数组的一个元素,这时结构指针变量的值是该结构数组元素的首地址。  设ps为指向结构数组的指针变量,则ps也指向该结构数组的0号元素,ps+1指向1号元素,ps+i则指向i号元素。这与普通数组的情况是一致的。...【阅读全文】
我爱网王 | 2014-11-22 11:12:42 | 阅读(230) | 评论(0)
一个数组的元素值为指针则是指针数组。 指针数组是一组有序的指针的集合。 指针数组的所有元素都必须是具有相同存储类型和指向相同数据类型的指针变量。指针数组说明的一般形式为:    类型说明符 *数组名[数组长度]其中类型说明符为指针值所指向的变量的类型。例如:    int *pa[3]表示pa是一个指...【阅读全文】
dyli2000 | 2014-11-20 21:24:23 | 阅读(0) | 评论(0)
1、普通文本CELL的文本颜色、背景颜色设置 private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) {     if (e.RowIndex < 0)         return;     DataGridViewRow dgr = dataGridView1.Rows[e.Row...【阅读全文】