標題:
變數宣告
[打印本頁]
作者:
周政輝
時間:
2017-8-1 14:07
標題:
變數宣告
練習宣告 int ,string 型別的變數
並利用 cout 輸出
作者:
周政輝
時間:
2017-8-1 14:07
#include<iostream> // 引入標頭檔 Input & Output 用來做輸入和輸出使用
#include<cstdlib> // 引入標頭檔函式庫
using namespace std;//命名空間
int main() //
{
// 變數宣告
int number = 10;
string str = "hello";
cout << number << endl;
cout << str << endl;
system("pause"); //按任意鍵結束程式
return 0; // 告知我們的程式說 程式已經正常執行並結束 \
// 單行註解
/* 多行註解*/
}
複製代碼
作者:
蔣皓宸
時間:
2017-8-1 14:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=123;
string str="hello";
cout<<str<<endl;
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊詠竣
時間:
2017-8-1 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =10 ;
string str = "windows 10 系統錯誤";
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2017-8-1 14:16
[quote]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//int number=10;
string str ="hello";
cout<<str;
// cout<<"hello"<<endl;
//cout<<"coc"<<endl;
system("pause");
return 0;
}
作者:
楊詠翔
時間:
2017-8-1 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="hello";
int number=87;
cout<<str<<endl;
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
周政輝
作者:
林孟霆
時間:
2017-8-1 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=100;
string str= "hello";
cout<<"林孟霆"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤靖評
時間:
2017-8-1 14:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number = 10;
string str = "hello";
cout<<number;
cout<<str;
cout<<"天才懶羊羊"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭稟燁
時間:
2017-8-1 14:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"鄭稟燁"<<endl;
system("pause")
return 0;
}
複製代碼
作者:
尤靖瑗
時間:
2017-8-1 14:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"尤靖瑗"<<endl;
int namber = 100;
cout<<namber<<endl;
system("pause");
return 0;
}
複製代碼
作者:
石庭禎
時間:
2017-8-1 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//變數宣告
int number=10;
cout << number << endl;
system("pause");
return 0;
}
作者:
郭宗翰
時間:
2017-8-1 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi87"<<endl;
int number = 10;
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳智鈞
時間:
2017-8-1 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=7;
string str="hello";
cout<<number<<endl;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡佾辰
時間:
2017-8-1 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=10;
string str ="hello";
cout<< number<<endl;
/* cout<<"hello"<<endl;
cout<<"I my Alexander"<<endl;
*/
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-8-1 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =66;
cout<<number<<endl;
system("pause");
return 0;
}
作者:
林廷融
時間:
2017-8-1 14:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"555555"<<endl;
int number = 10;
cout<<number<<endl;
system("pause");
return 0;
}
作者:
黃宇瑄
時間:
2017-8-1 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =26;
string str="all";
cout<<number<<endl;
cout<<str<<endl;
system("pause");
return 0;
複製代碼
回復
1#
周政輝
作者:
林廷融
時間:
2017-8-1 14:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"555555"<<endl;
int number = 10;
cin>>number;
cout<<number<<endl;
cout<<"你輸入的文字是:"<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-8-1 14:58
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int number=0;
string str="";
cout<<number<<endl;
cin>>number;
cin>>str;
cout<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭采納
時間:
2017-8-1 14:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=12;
cout<<number<<"\r\n";
string str="ruok";
cout<<str<<"\r\n";
system("pause");
return 0;
}
複製代碼
作者:
胡綵玲
時間:
2017-8-1 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=0;
string str="";
float flo=0;
cin>>number;
cout<<number<<endl;
cout<<str<<endl;
system("pause");
return 0;
作者:
尤靖瑗
時間:
2017-8-1 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"尤靖瑗"<<endl;
int number = 0;
string str = "";
cin >> number;
cout<<"你輸入的數字是"<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭宗翰
時間:
2017-8-1 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi87"<<endl;
int number = 10;
cout<<number<<endl;
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林廷融
時間:
2017-8-1 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"555555"<<endl;
int number = 10;
cin>>number;
cout<<number<<endl;
cout<<"你輸入的文字是:"<<number<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2