標題:
自我介紹
[打印本頁]
作者:
鄭又綸
時間:
2024-8-29 16:33
標題:
自我介紹
[attach]19640[/attach]
試宣告五個變數來裝你的個人資料, 分別為2個字元陣列(char)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:
#include<stdio.h> //引入 <基本輸入輸出> 標頭檔 input & output stream
#include<stdlib.h> //引入 <標準函式庫> 標頭檔 因用到了syatem("pause");
int main() //主函式
{
char name[50]="黃國穎", school[50]="愛國國小";
int age=9;
float h=138.6, w=27.5;
printf("我的大名:%s\n",name);
printf("就讀: %s\n",school);
printf("今年: %d 歲\n",age);
printf("身高: %.2f 公分\n",h);
printf("體重: %.2f 公斤\n",w);
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
于雍平
時間:
2024-8-29 20:27
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2