Click here to Skip to main content
15,917,645 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to show Bitmap Pin
Guffa18-Nov-07 11:23
Guffa18-Nov-07 11:23 
GeneralRe: How to show Bitmap Pin
Christian Graus18-Nov-07 11:35
protectorChristian Graus18-Nov-07 11:35 
GeneralRe: How to show Bitmap Pin
dataminers18-Nov-07 12:16
dataminers18-Nov-07 12:16 
GeneralRe: How to show Bitmap Pin
Christian Graus18-Nov-07 12:45
protectorChristian Graus18-Nov-07 12:45 
GeneralRe: How to show Bitmap Pin
dataminers18-Nov-07 10:17
dataminers18-Nov-07 10:17 
GeneralRe: How to show Bitmap Pin
Christian Graus18-Nov-07 11:35
protectorChristian Graus18-Nov-07 11:35 
GeneralRe: How to show Bitmap Pin
Guffa18-Nov-07 15:33
Guffa18-Nov-07 15:33 
QuestionWhat would be the proper way to comment within this code? Pin
cmh62318-Nov-07 8:46
cmh62318-Nov-07 8:46 
using System;

public class AvgPrime
{
public static void Main()
{
double c=0,y=0,p=0;
int i,j;
bool isPrime;

for(i=2; i <= 100; i++)
{
isPrime = true;

for(j=2; j <= i/2; j++)
{
if(i % j == 0)
{
isPrime = false;
}
}
if(isPrime)
{
y = y + 1;
c = c + i;
}
}

p = c/y;
Console.WriteLine("The avg of all prime numbers from 1 to 100 is {0}",p);
}
}
AnswerRe: What would be the proper way to comment within this code? Pin
mav.northwind18-Nov-07 8:50
mav.northwind18-Nov-07 8:50 
AnswerRe: What would be the proper way to comment within this code? Pin
Luc Pattyn18-Nov-07 11:09
sitebuilderLuc Pattyn18-Nov-07 11:09 
AnswerRe: What would be the proper way to comment within this code? Pin
echuck6618-Nov-07 15:44
echuck6618-Nov-07 15:44 
QuestionLEXICAL ANALYSIS Pin
waheed awan18-Nov-07 8:37
waheed awan18-Nov-07 8:37 
AnswerRe: LEXICAL ANALYSIS Pin
DavidNohejl18-Nov-07 11:38
DavidNohejl18-Nov-07 11:38 
Questionhow to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi18-Nov-07 8:18
ShaikhAffi18-Nov-07 8:18 
AnswerRe: how to add row with checkboxes inside in table server control using c# Pin
SABhatti18-Nov-07 13:00
SABhatti18-Nov-07 13:00 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi18-Nov-07 22:31
ShaikhAffi18-Nov-07 22:31 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
SABhatti19-Nov-07 14:08
SABhatti19-Nov-07 14:08 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi19-Nov-07 22:27
ShaikhAffi19-Nov-07 22:27 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
SABhatti20-Nov-07 6:26
SABhatti20-Nov-07 6:26 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi20-Nov-07 22:52
ShaikhAffi20-Nov-07 22:52 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
SABhatti21-Nov-07 0:45
SABhatti21-Nov-07 0:45 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi21-Nov-07 10:55
ShaikhAffi21-Nov-07 10:55 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
SABhatti22-Nov-07 4:37
SABhatti22-Nov-07 4:37 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi23-Nov-07 8:54
ShaikhAffi23-Nov-07 8:54 
GeneralRe: how to add row with checkboxes inside in table server control using c# Pin
ShaikhAffi23-Nov-07 9:05
ShaikhAffi23-Nov-07 9:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.