experience seeking advise


No skills
The only way to:
Learn more
See more
More practice
More thoughts
The multi-

How to use c # code to create multiple SQL Server stored procedures? 2012-05-11 raise a reward of 100 points


You can inside the SQL stored procedure, and then, in c #, call on it.

Hope to help you.

Why static class method can be called directly in Java? 2012-05-04 raise a reward of 100 points


Because the static methods of the class are automatically placed in memory when the program starts,
Public memory is part of the program (but can only access), and class name you can see here as a namespace.

Hope to help you.

#include<stdio.h>
main()
{int i,j,k,p,a[30];
int su;
for(i=0,p=0;i<30;i++,p++)
{scanf("%d",&a[i]);
if(a[i]==0) break;
}
for(i=0;i<p;i++)
if(a[i]%2==0)
{for(j=1;j<a[i]/2;j++)
if( su(a[i]-j) && su(a[i]+j) )
{printf("%d=%d+%d\n",a[i],a[i]-j,a[i]+j);
break;
}
}
else printf("%d is odd number!\n",a[i]);
}
int su (int x)
{
int i;
for(i=2;i<x;i++)
if(x%i==0) return 0;
return 1;
}

Do not know how to modify this error, please guide …


This error occurs because the variable and function declarations are you misunderstand
int su; The Su declares a variable, integer, not a function, and you treat it like a function call in the program, Su (a[i]-j) &&Su (a[i]+j), so the compiler reports an error, in fact, should you want to declare a function, so it should be: int Su (int);

Tags:

Label control’s font in VB6.0 Enterprise Edition you can change? 2012-05-05 raise a reward of 100 points


Code like this
Label1.Font=" &quot Microsoft ya black;
Label1.Font=" song "

IDE environment, direct control, and then Properties window find the font properties on the right side, double-click to modify

Hope to help you.

Compiling Android applications what languages to learn?


Android itself is written in Java and runs on the Linux Foundation
You need to have a basic knowledge and experience in Java development

« Previous posts Back to top