完整程式碼
第一種方法#include <iostream> using namespace std; int main(void){ cout<<"耶和華所賜的福使人富足,"<<endl; cout<<"並不加上憂慮"<<endl; system("pause"); return 0; }
第二種方法
#include <iostream> #define pi 3.1415926 //define pi 數值,不用加= ,尾巴不用加分號 using namespace std; int main(){ //pi=3.14; //加此行編譯也會錯 cout<<"半徑10的圓面積"<<pi*10*10<<endl; system("pause"); return 0; }
輸出結果