如下所示,最簡單的一段程式碼 #include<stdio.h> //標頭檔案,預處理檔案 int main() //主函式 { //大花括號表示一段整程式 int a; //宣告變數a int b; //宣告變數b scanf("%d",&a); //輸入a scanf("%d",&b); //輸入b printf("result: %d",a+b); //打印出a+b的值 printf("This time i will not say helloworld!");// 列印一段話,中間用雙引號“”表示要列印的內容 return 0; //向主函式返回一個0 }
如下所示,最簡單的一段程式碼
#include<stdio.h> //標頭檔案,預處理檔案
int main() //主函式
{ //大花括號表示一段整程式
int a; //宣告變數a
int b; //宣告變數b
scanf("%d",&a); //輸入a
scanf("%d",&b); //輸入b
printf("result: %d",a+b); //打印出a+b的值
printf("This time i will not say helloworld!");// 列印一段話,中間用雙引號“”表示要列印的內容
return 0; //向主函式返回一個0
}