|
|
вернуться в форумPlease help me to find the error I want to submit the solution in C language. What language I should choose from the option and what is the error in following coding:- #include <stdio.h> int main() { double a,b; scanf("%lf %lf",&a,&b); printf("%lf",a+b); return 0; } Edited by author 31.03.2015 20:19 Re: Please help me to find the error Use integral type (int, long, long long) or set precision in output format string printf("%0.0lf",a+b); Re: Please help me to find the error Послано Chen 6 июн 2015 16:58 just use the integer |
|
|