2013/10/7 作業一 老師:林中誠 2013/10/7 作業一 老師:林中誠

#include<stdio.h>
#include<stdlib.h>

int main()
{
 int a,b,c;
 
 a=5;
 b=12;
 c=a+b;
 printf("%d",c);
 system("pause");
 return 0;
}
 

 

#include<stdio.h>
#include<stdlib.h>

int main()
{
 int a,b,c,d;
 
 a=6;
 b=7;
 c=24;
 d=a+b+c;
 printf("%d",d);
 system("pause");
 return 0;
}