|
|
вернуться в форум1000 var a,b,c:integer; begin write('a,b='); read(a,b); c:=a+b; write('c=',c); end. Re: 1000 it's easy a little): var a,b,c:integer; begin read(a,b); c:=a+b; write(c); end. Re: 1000 Послано Pascal 29 янв 2009 01:19 but it very little var a,b:integer; begin read(a,b); write(a+b); end. Re: 1000 Edited by author 29.01.2009 23:08 Re: 1000 Послано Lotfi 23 сен 2009 04:36 help me please this is my code source i don't know why it's wrong #include<stdio.h> int main(void) { int a, b,c;
printf("Please enter a and b: "); scanf("%ld %ld", &a, &b);
c=a+b;
printf("a+b is %ld\n", c);
return 0; } |
|
|