12.мар.2011 в 09:44:43
|
Задача "Question 1" (0)
| 0 реплик |
11.мар.2011 в 21:09:58
|
Задача "Symmetric matrix" (0)
| 0 реплик |
imesecan 09.мар.2011 в 18:19:36
|
Задача "Largest power of two" (2)
| 2 реплики |
| Реплика удалена
|
07.мар.2011 в 15:06:45
|
Задача "Sum of the numbers" (0)
| 0 реплик |
07.мар.2011 в 15:06:44
|
Задача "Number of Perfect numbers" (0)
| 0 реплик |
imesecan 26.фев.2011 в 22:21:20
|
Задача "Счастливые билеты" (4)
| 4 реплики |
| Реплика удалена
|
imesecan 21.фев.2011 в 22:21:27
|
Задача "Ladders" (4)
| 4 реплики |
| Реплика удалена
|
imesecan 04.мар.2011 в 17:51:34
|
Задача "Простые числа" (2)
| 2 реплики |
| Реплика удалена
|
imesecan 26.фев.2011 в 21:56:33
|
Задача "Степень" (2)
| 2 реплики |
| Реплика удалена
|
imesecan 26.фев.2011 в 21:53:47
|
Задача "Timer" (2)
| 2 реплики |
| Реплика удалена
|
imesecan 26.фев.2011 в 22:02:58
|
Задача "Коррекция кода" (1)
| 1 реплика |
| Реплика удалена
|
imesecan 24.фев.2011 в 19:07:49
|
Задача "The largest product" (3)
| 3 реплики |
| Реплика удалена
|
imesecan 23.фев.2011 в 21:42:58
|
Задача "Triangle" (2)
| 2 реплики |
| Реплика удалена
|
imesecan 13.фев.2011 в 10:55:31
|
Задача "The sum of digits" (4)
| 4 реплики |
| The question doesn't mention the number of digits. So, the number can have 4 or five digits or 10 digits.
As far as the number has digits we take the digits one by one; and then calculate the sum.
|
imesecan 07.фев.2011 в 21:20:29
|
Задача "A+B" (5)
| 5 реплик |
| In questions when it specifies a condition for sure it's better to check for it. But usually, you shouldn't give extra information like: cout<<"the sum is"<<A+B<<endl; but simply say cout<<A+B; Just what it asks.
Or, when getting information, you don't say, cout<<"Enter a number..:"; cin>>A; but simply say cin>>A;
|
imesecan 20.фев.2011 в 15:09:01
|
Задача "Shprehjet aritmetike" (3)
| 3 реплики |
| Реплика удалена
|
imesecan 20.фев.2011 в 14:21:13
|
Задача "Greatest common divisor" (1)
| 1 реплика |
| int x,y,rem=0;
cin>>x>>y; // After you read x and y you must make sure that // x is greater than y. Did you check for this ? :)
while (y!=0) { rem=x%y; y=x; // I think this has to be reverse x=y; y=rem; }
// When you quit from the loop y is already 0; Are you sure to show this 0? cout<<y;
|
imesecan 13.фев.2011 в 01:12:06
|
Power of two (2)
| 2 реплики |
| Реплика удалена
|
imesecan 17.фев.2011 в 05:26:04
|
Problem "The sum of digits" (1) (1)
| 1 реплика |
| Реплика удалена
|