bahasa c
Contoh suatu program C (2)
#include <stdio.h>
int main()
{
int a,b,c;
printf("Enter the first value:”);
scanf(“%d”,&a);
printf("Enter the second value:”);
scanf(“%d”,&b);
c = a + b;
printf("%d + %d = %d\n",a,b,c);
return 0
}
#include <stdio.h>
int main()
{
int a,b,c;
printf("Enter the first value:”);
scanf(“%d”,&a);
printf("Enter the second value:”);
scanf(“%d”,&b);
c = a + b;
printf("%d + %d = %d\n",a,b,c);
return 0
}
Komentar
Posting Komentar