Community
Robert Kuznetsov 06 February 2021 →
Many thanks for this course!!!
Robert Kuznetsov 24 November 2020 →
Hello! How are you? Could you help me to solve practical task?
Robert Kuznetsov 21 November 2020 →
Is it work for Ubuntu?
Robert Kuznetsov 20 September 2020 →
Why do the english version website don't have all translations? Can I help to translate the english version of the website?
for example:
- I don't see normal text for the button that create new topic.
- I don't see translation for edit button and many other buttons.
Robert Kuznetsov 19 September 2020 →
Thank you for the lesson and the course! :)
user-673ae0d4048222ae 10 June 2020 →
Hello! Where I can read the text of this task? What should I write here?
user-673ae0d4048222ae 10 June 2020 →
include <stdio.h>
int main(void) { int lower, upper, step, celsium, kelvin; lower = 0; upper = 300; step = 20;
celsium = lower;
while(celsium <= upper) {
kelvin = celsium + 273;
printf("%d : %d\n", celsium, kelvin);
celsium = celsium + step;
}
return 0;
}
user-673ae0d4048222ae 10 June 2020 →
int main(void) { int lower, upper, step, celsium, kelvin; lower = 0; upper = 300; step = 20;
celsium = lower;
while(celsium <= upper) {
kelvin = celsium + 273;
printf("%d : %d\n", celsium, kelvin);
celsium = celsium + step;
}
return 0;
}
// BEGIN (write your solution here) const m = 59; const c = 300000000; const E = m*c*c; console.log(E); // END Where is a mistake? I cannot submit, cannot see teacher's solution, this is frustrating
Hi! This is very strange, when I just copy your code it works out, but when I rewrite it identically, it says I have mistakes. They are perfectly the same to my eye(((9