標題:
自我介紹
[打印本頁]
作者:
許婷芳
時間:
2019-7-19 13:08
標題:
自我介紹
試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
[attach]6846[/attach]
作者:
謝以恩
時間:
2019-7-19 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="謝以恩",school="大同國小" ;
int age=10;
float w=148.6,x=12;
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年齡:"<<age<<"歲"<<endl;
cout<<"我的體重:"<<x<<"公斤"<<endl;
cout<<"我的身高:"<<w<<"公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-7-19 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="winny",school="南成國小";
int age=11;
float x=148.5,y=32.1;
cout<<" 我的大名:"<<name<<endl;
cout<<" 就讀:"<<school<<endl;
cout<<" 年齡:"<<age<<"歲"<<endl;
cout<<" 身高:"<<x<<"公分"<<endl;
cout<<" 體重:"<<y <<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林祐霆
時間:
2019-7-19 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林祐霆",school="大同國小";
int age=9;
float w=9.487,h=140;
cout<<"我的名字是"<<name<<endl;
cout<<"我的學校是"<<school<<endl;
cout<<"我的年齡是"<<age<<"歲"<<endl;
cout<<"我的體重(掰的)是"<<w<<"公斤"<<endl;
cout<<"身高是"<<h<<"公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2019-7-19 20:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="謝以愛",school="陽明國小";
int age=12;
float h=166.3,w=42.9;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<h<<"公分"<<endl;
cout<<"體重:"<<w<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇韋誠
時間:
2019-7-19 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="蘇韋誠",school="大同國小";
int age=9;
float x=155.5,y=29;
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年齡:"<<age<<"歲"<<endl;
cout<<"我的體重:"<<x<<"公斤"<<endl;
cout<<"我的身高:"<<y<<"身高"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林祐霆
時間:
2019-7-19 23:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="林祐霆",school="大同國小";
int age=9,cousin=4;
float w=9.487,h=140;
cout<<"我的名字是"<<name<<endl;
cout<<"學校是"<<school<<endl;
cout<<"我"<<age<<"歲"<<endl;
cout<<"體重(掰的)是"<<w<<"公斤"<<endl;
cout<<"身高是"<<h<<"公分"<<endl;
cout<<"我有"<<cousin<<"個表和堂兄弟姊妹"<<endl;
cout<<"很高興見到你!"<<endl;
return 0;
}
複製代碼
作者:
洪承廷
時間:
2019-7-24 18:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="洪承廷,school=瑞興國小" ;
int age=11;
float w=145,x=35.5;
cout<<"我的大名:"<<name<<endl;
cout<<"我的學校:"<<school<<endl;
cout<<"我的年齡:"<<age<<"歲"<<endl;
cout<<"我的體重:"<<x<<"公斤"<<endl;
cout<<"我的身高:"<<w<<"公分"<<endl;
system("pause");
return 0;
作者:
尤爾呈
時間:
2019-7-26 18:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string name="尤爾呈",school="瑞興國小";
int age=10;
float x=145,y=40;
cout<<"我的大名:"<<name<<endl;
cout<<"就讀:"<<school<<endl;
cout<<"今年:"<<age<<"歲"<<endl;
cout<<"身高:"<<x<<"公分"<<endl;
cout<<"體重:"<<y<<"公斤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤爾呈
時間:
2019-7-26 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9999,y=9858;
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;
}
複製代碼
作者:
尤爾呈
時間:
2019-7-26 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x;"<<endl;
cin>>x;
cout<<"請輸入y;"<<endl;
cin>>y;
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;
}
複製代碼
作者:
洪承廷
時間:
2020-5-22 22:44
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
int r;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
cin>>r;
cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
system("pause");
return 0;
}
作者:
洪承廷
時間:
2020-5-22 22:44
[img]#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
int r;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
cin>>r;
cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
system("pause");
return 0;
}[/img]
作者:
洪承廷
時間:
2020-5-22 22:45
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
int r;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"想讓電腦幫你抓出第幾個字母?"<<endl;
cin>>r;
cout<<"字串的第"<<r<<"個字母為:"<<str[r-1]<<endl;
system("pause");
return 0;
}
作者:
謝以恩
時間:
2020-5-23 20:59
??????????????????????????????
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2