Forum: Computer Science Aug 5th, 2009 |
| Replies: 16 Views: 1,052 Learning AI is already existed except it is built to serve their specific purpose. I haven't seen any learning purpose-less AI. |
Forum: Computer Science Aug 17th, 2008 |
| Replies: 4 Views: 765 If ^ is a exponentiation operator, then the sum will be equal to the MyByte. If the ^ is a XOR operator, then the sum depend on MyByte
Since:
ABCD represents for MyByte binary.
ABCD & (0010 ^... |
Forum: Computer Science Jan 4th, 2008 |
| Replies: 52 Views: 20,887 Can you help me start my project? please..... |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 12 Views: 1,965 Experimental skill and Curiosity skill are also very helpful in learning computer science. |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 12 Views: 1,965 Learning programming not only able to develop own software, but also gain the great understanding of how the computer works beneath what we can really see. More importantly, it develops your critical... |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 12 Views: 1,965 My favorite part of computer science is programming. |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 12 Views: 1,965 Programming is sub-field of computer science. In short, computer science is the study of the technology (mostly about machine). |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 12 Views: 1,965 Computer science is too large to define. |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 9 Views: 1,185 I do not dislike C++ and I didn't say that Visaul Basic(VB) is better than C++. Moreover, I only alternatively suggested him to use VB if he don't have any experience in web programming. I did not... |
Forum: Computer Science Jan 2nd, 2008 |
| Replies: 9 Views: 1,185 I did not suggest what he don't know of, I suggested him to choose web programming since it could write a complete program quicker than C++ or Pascal. If he choose C++ and Pascal for develope the... |
Forum: Computer Science Jan 1st, 2008 |
| Replies: 9 Views: 1,185 If you have some knowledges about web programming, I would suggest you to use PHP or ASP . If you don't have any knowledges with web programming, VB2008 is also good for quick-developing. |
Forum: Computer Science Dec 28th, 2007 |
| Replies: 5 Views: 1,424 int k=0, i=0, c=0;
while (k < SIZE) {
c++;
if (mat[k][i] == 1) {
k++;
i = 0;
continue;
} |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 Really apologize about that one. Anyway, you may begin now. Only one solution was found so far. |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 I was mistakenly type int i ; n = 20;. Actually, it was supposed to be int i , n = 20. It was very embarassing for me to post this puzzle with typo. Anyway, the actual puzzle start up code is:
... |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 Why would I trick you? and how could this kind of problem is a homework? |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 NOTE: If you found the answer, don't post the solutions here. Send private message to me. I will tell you whether your solution is correct or not. |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 Of course, it is intentional. You need to change ONE CHARACTER in that code to make that program right. This program is supposed to print x 20 times. |
Forum: Computer Science Dec 5th, 2007 |
| Replies: 17 Views: 2,008 int i ; n = 20 ;
for ( i = 0 ; i < n ; i--)
printf('x');
Find 3 ways to make this code print x 20 times by ONLY CHANGE ONE CHARACTER in this code. Have fun guy! |