標題:
基本輸入輸出 (一)
[打印本頁]
作者:
周政輝
時間:
2017-8-1 14:44
標題:
基本輸入輸出 (一)
#include<iostream> // 引入標頭檔 Input & Output 用來做輸入和輸出使用
#include<cstdlib> // 引入標頭檔函式庫
using namespace std;//命名空間
int main()
{
// 變數宣告
int number = 0;
string str = "";
float flo =0;
cin >> number;
cin >> str;
cout << "你輸入的數字是:" << number << endl;
cout << "你輸入的文字是:" << str << endl;
system("pause"); //按任意鍵結束程式
return 0;
}
複製代碼
作者:
石庭禎
時間:
2017-8-1 14:47
#include<iostream> // 引入標頭檔 Input & Output 用來做輸入和輸出使用
#include<cstdlib> // 引入標頭檔函式庫
using namespace std;//命名空間
int main()
{
// 變數宣告
int number = 0;
string str = "";
float flo =0;
cin >> number;
cin >> str;
cout << "你輸入的數字是:" << number << endl;
cout << "你輸入的文字是:" << str << endl;
system("pause"); //按任意鍵結束程式
return 0;
作者:
蔣皓宸
時間:
2017-8-1 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=123;
string str="hello";
cin>>number;
cin>>str;
cout<<"你輸入的文字是:"<<str<<endl;
cout<<"你輸入的數字是:"<<number<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
周政輝
作者:
陳智鈞
時間:
2017-8-1 14:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//變數宣告
int number=0;
string str="";
float flo=0;
cin>>number;
cin>>str;
cout<<"你輸入的文字是:"<<str<<endl;
cout<<"你輸入的數字是:"<< number <<endl;
system("pause");
return 0;
}
複製代碼
作者:
林孟霆
時間:
2017-8-1 14:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=0;
string str= "";
cin>>number;
cin>>str;
cout<<str;
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-8-1 14:59
#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 15:00
#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 15:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=10;
string str ="hello";
cin>>number;
cin>>str;
cout<<"你輸入的數字是"<<number<<endl;
cout<<"你輸入的文字是"<<str<<endl;
// cout<<"hello"<<endl;
//cout<<"coc"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤靖瑗
時間:
2017-8-1 15:02
#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 15:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="中文";
int number=10;
//cout<<number<<endl;
cin >> number;
cout <<"你說"<< number<< endl;
cin >>str;
cout<<"你說"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林廷融
時間:
2017-8-1 15:02
#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 15:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number;
cout<< "請輸入一個數字";
cin>>number;
cout<< "你輸入的數字是"<<number<<endl;
system("pause");
return 0;
}
作者:
林翊卉
時間:
2017-8-1 15:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =10;
string str = "hello";
cin >> number;
cin >> str;
cout << number;
cout << str;
cout<<"penelope"<< endl;
system("pause");
return 0;
作者:
蔡佾辰
時間:
2017-8-1 15:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=10;
string str ="hello";
cin>>number;
cout<<str;
cout<<"你輸入的數字是" <<number;
cout<< "你輸入的文字是"<< str;
/* cout<<"hello"<<endl;
cout<<"I my Alexander"<<endl;
*/
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-8-1 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入一個數字";
cin>>a;
cout<<"你輸入的數字是"<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤靖評
時間:
2017-8-1 15:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=10;
string str = "hello";
cin>>number;
cin>>str;
cout<<"你輸入的數字是:"<<number<<endl;
cout<<"你輸入的文字是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊詠竣
時間:
2017-8-1 15:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number;
string str;
cout<<"請輸入一個數字"<<endl;
cout<<"請輸入一個文字";
cin>>number;
cin>>str;
cout<<"您輸入的數字是:"<<number<<endl;
cout<<"您輸入的文字是:"<<str<<endl;
system("pause");
return 0;
複製代碼
作者:
林子勛
時間:
2017-8-1 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout <<"dylan"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
郭宗翰
時間:
2017-8-1 15:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"hi87"<<endl;
int number = 10;
cout<<number<<endl;
cout<<number<<endl;
cin>>a
system("pause");
return 0;
}
複製代碼
回復
1#
周政輝
作者:
郭采納
時間:
2017-8-1 15:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number=0;
cin>>number;
cout<<number<<"\r\n";
system("pause");
return 0;
}
複製代碼
作者:
邱路加
時間:
2017-8-1 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number =10;
cout<<"number"<<endl;
cout<<"luke"<<endl;
cin>>a
cout<<number<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭稟燁
時間:
2017-8-1 15:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout <<"請輸入一整 數"
system("pause")
return 0;
}
複製代碼
作者:
邱路加
時間:
2017-8-1 16:01
#include<iostream>
#include<cs
return 0;
int x=23;
int y=7;
cout<<"x=y"<<x+=y<<endl;
cout<<"x=y"<<x-=y<<endl;
cout<<"x=y"<<x*=y<<endl;
cout<<"x=y"<<x/=y<<endl;
cout<<"x=y"<<x%=y<<endl;
syste("pause"
}
複製代碼
作者:
林翊卉
時間:
2017-8-1 16:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=28,y=15;
cout<<"當x的值為"<<x<<",y的值為"<<y<<"時...."<<endl;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2