Mtangoo JF-Expert Member Joined Oct 25, 2012 Posts 6,163 Reaction score 5,623 Feb 19, 2018 #21 JF answering machines. Congratulations for killing our Edu!
L004 JF-Expert Member Joined Oct 30, 2017 Posts 200 Reaction score 204 Feb 20, 2018 #22 here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } }
here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } }
Kang JF-Expert Member Joined Jun 24, 2008 Posts 5,694 Reaction score 2,588 Feb 20, 2018 #23 L004 said: here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } } Click to expand... Output is wrong.
L004 said: here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } } Click to expand... Output is wrong.
Paa JF-Expert Member Joined Jun 12, 2015 Posts 1,462 Reaction score 2,940 Feb 20, 2018 Thread starter #24 L004 said: here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } } Click to expand... Shukran, It works
L004 said: here are the C code Code: #include <stdio.h> int main() { int a; for (a = 1; a<=8; a++) { int sum=a+a,product=a*a; printf(" %d + %d = %d\n ",a,a,sum); printf(" %d * %d = %d\n",a,a,product); } } Click to expand... Shukran, It works
L004 JF-Expert Member Joined Oct 30, 2017 Posts 200 Reaction score 204 Feb 20, 2018 #25 Kang said: Output is wrong. Click to expand... provide the output as reference so i know its real haaa
Kang said: Output is wrong. Click to expand... provide the output as reference so i know its real haaa
L004 JF-Expert Member Joined Oct 30, 2017 Posts 200 Reaction score 204 Feb 20, 2018 #26 Paa said: Shukran, It works Click to expand... hit thanks button and welcomeeee